Merge pull request #671 from Nokecy/patch-1

ProfileController Should inherit AbpController
pull/705/head
Halil İbrahim Kalkan 6 years ago committed by GitHub
commit 79feaaadc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,13 +3,14 @@ using System.Collections.Generic;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Volo.Abp.AspNetCore.Mvc;
namespace Volo.Abp.Identity namespace Volo.Abp.Identity
{ {
[RemoteService] [RemoteService]
[Area("identity")] [Area("identity")]
[ControllerName("Profile")] [ControllerName("Profile")]
public class ProfileController : IProfileAppService public class ProfileController : AbpController, IProfileAppService
{ {
private readonly IProfileAppService _profileAppService; private readonly IProfileAppService _profileAppService;

Loading…
Cancel
Save