Sha256: 9d7827f438e762faf10d6940620af27174b4885b0e045c02050fc42fa3edd89c
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 KB
Contents
# frozen_string_literal: true module Decidim # Organizations are one of the main models of Decidim. In a single Decidim # installation we can find many organizations and each of them can start # their own participatory processes. class Organization < ApplicationRecord has_many :participatory_processes, foreign_key: "decidim_organization_id", class_name: Decidim::ParticipatoryProcess, inverse_of: :organization has_many :static_pages, foreign_key: "decidim_organization_id", class_name: Decidim::StaticPage, inverse_of: :organization has_many :scopes, -> { order(name: :asc) }, foreign_key: "decidim_organization_id", class_name: Decidim::Scope, inverse_of: :organization has_many :admins, -> { where("roles @> ?", "{admin}") }, foreign_key: "decidim_organization_id", class_name: Decidim::User has_many :users, foreign_key: "decidim_organization_id", class_name: Decidim::User validates :name, :host, uniqueness: true mount_uploader :homepage_image, Decidim::HomepageImageUploader mount_uploader :official_img_header, Decidim::OfficialImageHeaderUploader mount_uploader :official_img_footer, Decidim::OfficialImageFooterUploader mount_uploader :logo, Decidim::OrganizationLogoUploader mount_uploader :favicon, Decidim::OrganizationFaviconUploader def homepage_big_url homepage_image.big.url end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
decidim-core-0.0.5 | app/models/decidim/organization.rb |