Manage Uploaded Files
A less abstruse interface for deleting files (this time, many at-a-shot). Available from the Edit Web page.
This commit is contained in:
parent
788d1eb075
commit
1d3f7007c6
7 changed files with 58 additions and 2 deletions
|
@ -17,7 +17,7 @@ class FileController < ApplicationController
|
|||
new_file = @web.wiki_files.create(params['file'])
|
||||
if new_file.valid?
|
||||
flash[:info] = "File '#{@file_name}' successfully uploaded"
|
||||
return_to_last_remembered
|
||||
redirect_to_page(@page_name)
|
||||
else
|
||||
# pass the file with errors back into the form
|
||||
@file = new_file
|
||||
|
@ -34,7 +34,7 @@ class FileController < ApplicationController
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
def delete
|
||||
@file_name = params['id']
|
||||
file = WikiFile.find_by_file_name(@file_name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue