mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
15 lines
449 B
Ruby
15 lines
449 B
Ruby
class SocialBotController < ActionController::Base
|
|
def share
|
|
case request.original_fullpath
|
|
when /(=%2F|\/)projects(%2F|\/)([\-0-9a-z]+)/
|
|
@project = Project.friendly.find("#{$3}")
|
|
render :project, status: :ok
|
|
when /(=%2F|\/)events(%2F|\/)([0-9]+)/
|
|
@event = Event.find("#{$3}".to_i)
|
|
render :event, status: :ok
|
|
else
|
|
puts "unknown bot request : #{request.original_url}"
|
|
end
|
|
end
|
|
|
|
end |