1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/models/role.rb

16 lines
359 B
Ruby
Raw Normal View History

2018-11-29 18:26:48 -05:00
# frozen_string_literal: true
class Role < ApplicationRecord
2018-12-01 21:28:34 -05:00
has_many :account_roles, dependent: :destroy
2018-11-29 18:26:48 -05:00
2018-12-01 21:28:34 -05:00
has_many :accounts, through: :account_roles, source: :account
2018-11-29 18:26:48 -05:00
belongs_to :resource, polymorphic: true, optional: true
validates :resource_type,
allow_nil: true,
inclusion: { in: Rolify.resource_types }
scopify
end