scinote-web/app/helpers/organizations_helper.rb

10 lines
241 B
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
module OrganizationsHelper
2016-10-11 22:46:30 +08:00
# resets the current organization if needed
2016-10-11 22:16:48 +08:00
def current_organization_switch(org)
if org != current_organization
current_user.current_organization_id = org.id
current_user.save
end
end
2016-02-12 23:52:43 +08:00
end