Initial commit
This commit is contained in:
25
app/policies/music_release_policy.rb
Normal file
25
app/policies/music_release_policy.rb
Normal file
@@ -0,0 +1,25 @@
|
||||
class MusicReleasePolicy < ReleasePolicy
|
||||
def create?
|
||||
true
|
||||
end
|
||||
|
||||
def show?
|
||||
true
|
||||
end
|
||||
|
||||
def update?
|
||||
true
|
||||
end
|
||||
|
||||
def destroy?
|
||||
true
|
||||
end
|
||||
|
||||
def tag_multiple?
|
||||
true
|
||||
end
|
||||
|
||||
def download_multiple?
|
||||
true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user