9 lines
203 B
Ruby
9 lines
203 B
Ruby
require File.join(Rails.root, 'lib', 'stream', 'soup')
|
|
|
|
class SoupsController < ApplicationController
|
|
before_filter :redirect_unless_admin
|
|
|
|
def index
|
|
default_stream_action(SoupStream)
|
|
end
|
|
end
|