switched license to agpl-3
[selectricity-live] / app / controllers / about_controller.rb
1 # Selectricity: Voting Machinery for the Masses
2 # Copyright (C) 2007, 2008 Benjamin Mako Hill <mako@atdot.cc>
3 # Copyright (C) 2007 Massachusetts Institute of Technology
4 #
5 # This program is free software. Please see the COPYING file for
6 # details.
7
8 class AboutController < ApplicationController
9   layout 'main'
10   
11   before_filter :add_sidebar
12
13   def index
14     redirect_to :action => 'overview'
15   end
16
17   def blog
18     redirect_to "http://blog.selectricity.org"
19   end
20
21   private
22   def add_sidebar
23     @sidebar_content = render_to_string :partial => 'sidebar',
24                                         :locals => { :page => action_name }
25   end
26
27 end
28

Benjamin Mako Hill || Want to submit a patch?