mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-23 17:54:17 +01:00
15 lines
262 B
Ruby
15 lines
262 B
Ruby
|
class API::FeedsController < API::ApiController
|
||
|
|
||
|
respond_to :json
|
||
|
|
||
|
def twitter_timelines
|
||
|
if params
|
||
|
limit = params[:limit]
|
||
|
else
|
||
|
limit = 3
|
||
|
end
|
||
|
@tweet_news = Feed.twitter.user_timeline(ENV['TWITTER_NAME'], {count: limit})
|
||
|
end
|
||
|
|
||
|
end
|