mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-14 20:24:03 +00:00
13 lines
222 B
Ruby
13 lines
222 B
Ruby
|
|
class UsersRole < ActiveRecord::Base
|
||
|
|
belongs_to :role
|
||
|
|
belongs_to :user
|
||
|
|
|
||
|
|
has_paper_trail on: [:create, :destroy], meta: { conference_id: :conference_id }
|
||
|
|
|
||
|
|
private
|
||
|
|
|
||
|
|
def conference_id
|
||
|
|
role.resource_id
|
||
|
|
end
|
||
|
|
end
|