Per project protection
This commit is contained in:
parent
4821aa6c25
commit
f6cc71bc36
|
@ -1,7 +1,13 @@
|
||||||
class FilesController < ApplicationController
|
class FilesController < ApplicationController
|
||||||
def download
|
def download
|
||||||
uploader = Note.find(params[:id]).attachment
|
note = Note.find(params[:id])
|
||||||
send_file uploader.file.path, disposition: 'attachment'
|
|
||||||
|
if can?(current_user, :read_project, note.project)
|
||||||
|
uploader = note.attachment
|
||||||
|
send_file uploader.file.path, disposition: 'attachment'
|
||||||
|
else
|
||||||
|
not_found!
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue