summaryrefslogtreecommitdiff
path: root/app/controllers/statics_controller.rb
blob: f2891f3f9fcc980b68072501e9fea7298ca00051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class StaticsController < ApplicationController

  def index
    if current_user
      redirect_to blogposts_path
    else
      redirect_to home_statics_path
    end
  end

  def home
  end

  def donate
  end

end