WIP périfériques utilisateur

This commit is contained in:
Paul Schneider 2016-05-30 13:54:52 +02:00
commit 56ddfa03de
3 changed files with 22 additions and 7 deletions

View file

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using AspNet.Security.OpenIdConnect.Extensions;
@ -122,7 +123,16 @@ namespace Yavsc.Providers {
context.Validated();
}
/// <summary>
/// List provided offline access tokens, to a given
/// user by its id
/// </summary>
/// <param name="userid"></param>
/// <returns></returns>
public List<string> GetOfflineTokens(string userid) {
throw new NotImplementedException();
}
}
}