18 lines
216 B
Ruby
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
|