2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2020-03-19 09:39:51 +00:00
|
|
|
class Controllers::OnlineNotificationsControllerPolicy < Controllers::ApplicationControllerPolicy
|
|
|
|
|
|
|
|
def show?
|
|
|
|
own?
|
|
|
|
end
|
|
|
|
|
|
|
|
def update?
|
|
|
|
own?
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy?
|
|
|
|
own?
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def own?
|
|
|
|
notification = OnlineNotification.find(record.params[:id])
|
|
|
|
notification.user_id == user.id
|
|
|
|
end
|
|
|
|
end
|