diff options
author | luca-marie <ml.kochsiek@fu-berlin.de> | 2016-08-25 20:50:12 +0200 |
---|---|---|
committer | thea <ta.kupler@gmail.com> | 2016-09-01 12:09:37 +0200 |
commit | fecc0e9e1985be2d3767664453d4776ac20897c0 (patch) | |
tree | b43ea9e5e1044a30b1da7a5fd7a5be5a8a8f7bd3 /app/controllers | |
parent | 4054060a68c119c509228db34ec139f0a0e0c00a (diff) |
Twitter controller now as helper, some more styling in CSS, bug fix
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/home_controller.rb | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index 49471ff..86c36e9 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -4,25 +4,8 @@ class HomeController < ApplicationController respond_to :html def index - unless Rails.application.secrets.twitter['enabled'] == false - twitter_handle = Rails.application.secrets.twitter['twitter_handle'] - @twitter_screen_name = twitter_handle - @twitter_name = twitter_client.user(twitter_handle).name - @tweets = twitter_client.user_timeline(twitter_handle).select{ |tweet| tweet.text.start_with?('RT','@')==false} - @tweet_time = "tweeted on" - end - if logged_in? redirect_to current_user end end - - def twitter_client - Twitter::REST::Client.new do |config| - config.consumer_key = Rails.application.secrets.twitter['consumer_key'] - config.consumer_secret = Rails.application.secrets.twitter['consumer_secret'] - config.bearer_token = Rails.application.secrets.twitter['bearer_token'] - end - end - end |