8 lines
102 B
Ruby
8 lines
102 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AccountPolicy < ApplicationPolicy
|
||
|
def show?
|
||
|
true
|
||
|
end
|
||
|
end
|