network_controller.rb 291 B

1234567891011121314
  1. class NetworkController < ApplicationController
  2. def show
  3. @bots = Bot.find_all_by_activate(true)
  4. @channels = Channel.find_all_by_activate(true)
  5. @freqs = Frequency.find_all_by_activate(true)
  6. @bans = Ban.find_all_by_activate(true)
  7. render :layout => 'plain'
  8. end
  9. end