Update archive_files_controller.rb

This commit is contained in:
chiu 2019-09-16 20:25:42 +08:00
parent 74301f69a6
commit 86da89fd24
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
class Admin::ArchiveFilesController < OrbitAdminController
def show
module_pages = Page.where(:module => 'archive').collect{|p| [p.name,p.url] }
module_pages = Page.where(:module => 'archive').collect{|p| p.url}[0]
redirect_to '/' + I18n.locale.to_s + module_pages
end
def index