مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
21 أسطر
382 B
Ruby
21 أسطر
382 B
Ruby
module WithinOrganization
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
helper_method :organization
|
|
before_action :add_organization_to_page_title
|
|
end
|
|
|
|
private
|
|
|
|
def organization
|
|
@organization ||= current_user.organizations_scope.find_by_permalink!(params[:org_permalink])
|
|
end
|
|
|
|
def add_organization_to_page_title
|
|
page_title << organization.name
|
|
end
|
|
|
|
end
|