Browse Source
Merge pull request #671 from Nokecy/patch-1
ProfileController Should inherit AbpController
pull/705/head
Halil İbrahim Kalkan
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
modules/identity/src/Volo.Abp.Identity.HttpApi/Volo/Abp/Identity/ProfileController.cs
|
|
|
@ -3,13 +3,14 @@ using System.Collections.Generic; |
|
|
|
using System.Text; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Microsoft.AspNetCore.Mvc; |
|
|
|
using Volo.Abp.AspNetCore.Mvc; |
|
|
|
|
|
|
|
namespace Volo.Abp.Identity |
|
|
|
{ |
|
|
|
[RemoteService] |
|
|
|
[Area("identity")] |
|
|
|
[ControllerName("Profile")] |
|
|
|
public class ProfileController : IProfileAppService |
|
|
|
public class ProfileController : AbpController, IProfileAppService |
|
|
|
{ |
|
|
|
private readonly IProfileAppService _profileAppService; |
|
|
|
|
|
|
|
|