11 lines
212 B
Ruby
11 lines
212 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class ApplicationPolicy
|
|
include PunditPolicy
|
|
|
|
attr_reader :record
|
|
|
|
def initialize_context(record)
|
|
@record = record
|
|
end
|
|
end
|