Class: Mdm::Enrollment::AccountsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/mdm/management/accounts_controller.rb

Instance Method Summary collapse

Instance Method Details

#showObject



6
7
8
9
10
11
12
# File 'app/controllers/mdm/management/accounts_controller.rb', line 6

def show
  service = Enrollment::Account.new
  service.params[:profile_uuid] = params.require(:profile_uuid)
  service.start

  render json: { account: service.result }
end