This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/controllers/statics_controller.rb
2015-03-22 23:20:45 +01:00

18 lines
216 B
Ruby

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