1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/policies/settings/profile_policy.rb

12 lines
210 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Settings::ProfilePolicy < ApplicationPolicy
def update?
2019-09-01 07:27:18 -04:00
!!account
end
def permitted_attributes_for_update
2019-03-24 15:27:06 -04:00
%i[nickname public_name biography avatar]
end
end