2014-07-02 04:57:18 +00:00
|
|
|
|
using ServiceStack.Web;
|
2014-09-14 17:42:23 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-07-02 04:57:18 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Net
|
|
|
|
|
{
|
|
|
|
|
public interface IAuthService
|
|
|
|
|
{
|
2014-09-14 17:42:23 +00:00
|
|
|
|
void Authenticate(IRequest request,
|
|
|
|
|
IResponse response,
|
|
|
|
|
object requestDto,
|
|
|
|
|
bool allowLocal,
|
|
|
|
|
string[] roles);
|
2014-07-02 04:57:18 +00:00
|
|
|
|
}
|
|
|
|
|
}
|