예제 #1
0
 public function showBlockedUsers()
 {
     $this->set_title('Blocked Users');
     #$this->users = User.find(:all, 'select' => "users.*", 'joins' => "JOIN bans ON bans.user_id = users.id", 'conditions' => ["bans.banned_by = ?", current_user()->id])
     $this->users = User::order("expires_at ASC")->select("users.*")->joins("JOIN bans ON bans.user_id = users.id")->take();
     $this->ip_bans = IpBans::all();
 }