plugins/ShinyCMS/app/policies/shinycms/discussion_policy.rb
# frozen_string_literal: true
# ShinyCMS ~ https://shinycms.org
#
# Copyright 2009-2024 Denny de la Haye ~ https://denny.me
#
# ShinyCMS is free software; you can redistribute it and/or modify it under the terms of the GPL (version 2 or later)
module ShinyCMS
# Pundit policy for administration of discussions
class DiscussionPolicy
attr_reader :this_user, :record
def initialize( this_user, record )
@this_user = this_user
@record = record
end
def show?
hide?
end
def hide?
@this_user.can? :hide, :discussions
end
def lock?
@this_user.can? :lock, :discussions
end
def unlock?
lock?
end
end
end