13 lines
133 B
Ruby
13 lines
133 B
Ruby
|
|
class DownloadPolicy < ApplicationPolicy
|
||
|
|
def index?
|
||
|
|
true
|
||
|
|
end
|
||
|
|
|
||
|
|
def create?
|
||
|
|
true
|
||
|
|
end
|
||
|
|
|
||
|
|
def destroy?
|
||
|
|
true
|
||
|
|
end
|
||
|
|
end
|