engine/app/controllers/locomotive/my_account_controller.rb

26 lines
448 B
Ruby
Raw Normal View History

module Locomotive
2011-07-06 18:48:04 +00:00
class MyAccountController < BaseController
sections 'settings', 'account'
actions :edit, :update
respond_to :json, :only => :update
skip_load_and_authorize_resource
def update
update! { edit_my_account_url }
end
protected
def resource
@account = current_locomotive_account
end
def begin_of_association_chain; nil; end # not related directly to current_site
end
end