You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
435 B
19 lines
435 B
using System.Threading.Tasks;
|
|
using IdentityServer4.Models;
|
|
using IdentityServer4.Services;
|
|
|
|
namespace UserCenter
|
|
{
|
|
public class ProfileService : IProfileService
|
|
{
|
|
public Task GetProfileDataAsync(ProfileDataRequestContext context)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public Task IsActiveAsync(IsActiveContext context)
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
} |