mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
14 lines
252 B
Ruby
14 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UsersRole < ApplicationRecord
|
|
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
|