projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Sort out storage and use of user preferred languages.
[rails.git]
/
app
/
controllers
/
site_controller.rb
1
class SiteController < ApplicationController
2
before_filter :authorize_web
3
before_filter :set_locale
4
before_filter :require_user, :only => [:edit]
5
6
def export
7
render :action => 'index'
8
end
9
end