Class: Locomotive::Api::AccountsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/locomotive/api/accounts_controller.rb

Instance Method Summary collapse

Methods included from Locomotive::ActionController::LocaleHelpers

#back_to_default_site_locale, #current_content_locale, #localized?, #set_back_office_locale, #set_current_content_locale, #setup_i18n_fallbacks

Instance Method Details

#createObject



16
17
18
19
20
# File 'app/controllers/locomotive/api/accounts_controller.rb', line 16

def create
  @account.from_presenter(params[:account])
  @account.save
  respond_with(@account)
end

#destroyObject



28
29
30
31
# File 'app/controllers/locomotive/api/accounts_controller.rb', line 28

def destroy
  @account.destroy
  respond_with(@account)
end

#indexObject



7
8
9
10
# File 'app/controllers/locomotive/api/accounts_controller.rb', line 7

def index
  @accounts = @accounts.ordered
  respond_with(@accounts)
end

#showObject



12
13
14
# File 'app/controllers/locomotive/api/accounts_controller.rb', line 12

def show
  respond_with(@account)
end

#updateObject



22
23
24
25
26
# File 'app/controllers/locomotive/api/accounts_controller.rb', line 22

def update
  @account.from_presenter(params[:account])
  @account.save
  respond_with(@account)
end