summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorluca-marie <ml.kochsiek@fu-berlin.de>2016-08-25 21:00:44 +0200
committerthea <ta.kupler@gmail.com>2016-09-01 12:09:37 +0200
commit1959dd6077d9cac95d678b5378022234ccbf979b (patch)
tree798cc73717f6f159f1d094e5ab6fd6b93659a1b1 /app
parentfecc0e9e1985be2d3767664453d4776ac20897c0 (diff)
Code lives now in twitter_helper.rb
Diffstat (limited to 'app')
-rw-r--r--app/controllers/twitter_controller.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/controllers/twitter_controller.rb b/app/controllers/twitter_controller.rb
deleted file mode 100644
index 0f6a773..0000000
--- a/app/controllers/twitter_controller.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-class TwitterController < ApplicationController
- 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
-
- 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
- end
-end