8 lines
131 B
Ruby
8 lines
131 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Users::RegistrationPolicy < ApplicationPolicy
|
||
|
def update?
|
||
|
!account&.user.nil?
|
||
|
end
|
||
|
end
|