32 lines
544 B
C#
32 lines
544 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace ChatRoomServer.Www.Controllers
|
|
{
|
|
public class UsersController : Controller
|
|
{
|
|
// GET: Users
|
|
public ActionResult AbuseList()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult ConnectionLog()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult UserList()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult BlockList()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
} |