21 lines
402 B
C#
21 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Web.Http;
|
|
|
|
namespace ChatRoomServer.Www.Areas.Api.Controllers
|
|
{
|
|
[RoutePrefix("api/users")]
|
|
public class UsersController : ApiController
|
|
{
|
|
[Route("report/{username}/{msgid:int}")]
|
|
public bool ReportAbuse(string username, long msgid)
|
|
{
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|