Module: IrcMachine::CoreRoutes

Included in:
HttpRouter
Defined in:
lib/irc_machine/core_routes.rb

Instance Method Summary collapse

Instance Method Details

#draw_routesObject



6
7
8
9
10
11
12
13
# File 'lib/irc_machine/core_routes.rb', line 6

def draw_routes
  get "/channels", "ChannelsController#list"
  put CHANNEL_REGEXP, "ChannelsController#join"
  delete CHANNEL_REGEXP, "ChannelsController#part"
  post CHANNEL_REGEXP, "ChannelsController#message"

  post %r{^/channels/([\w-]+)/github$}, "GithubNotificationsController#notify"
end