Base solution for your next web application

Activities of "tugrulkarakaya"

I'd like to use twilio two factor auth.

I enabled twilio form code by uncommentong a line I enabled it at setting panel at host I enter Api codes to config file

but while trying to login just email and googel auth are shown. I could not manage to show Twilio Auth on the screen. anything i am doing wrong?

Hi,

I am using IdentityServer for some other apps (clients app over identity server) And I use your existing /Chat/GetUploadedObject service for some other purposes (to uplaod some files). there was no token control before (previous versions) just file id and type was enough and I see there is encrypted token check at AuthConfigurer.cs so the clients not having token can not reach the file that is OK but Idendity server does not provide Encrypted token?

is there any way to send encrypted toke or do I need to update context.Token = SimpleStringCipher.Instance.Decrypt(qsAuthToken, AppConsts.DefaultPassPhrase); to accept token directly from a new parameter if exists instead of enc_auth_token?

have you got any question about this before?

Question

Changing currency as explained https://support.aspnetzero.com/QA/Questions/6163 does now work for stripe. any solution?

Hi, 1- I have download version 6.5 setup the environment 2- Added a new entity. 3- Run it 4- Run refresh.bat for service proxy update

I see that there are some removed methods from service proxy even if I did not change about them, for example

  • getSubscriptionPayment(paymentId: number | null | undefined): Observable<SubscriptionPayment>
  • protected processGetSubscriptionPayment(response: HttpResponseBase): Observable<SubscriptionPayment>
  • export class SubscriptionPayment implements ISubscriptionPayment
  • export enum SubscriptionPaymentGateway
  • export enum SubscriptionPaymentStatus
  • export enum SubscriptionPaymentPaymentPeriodType

Do I need them? Or, are those forgotten to be removed from project creation template?

I use Dell XPS 13 high DPI laptop (3840*2160) and Power tools second tab can not show controls properly on it.

I am not sure but you night think about https://docs.microsoft.com/en-us/dotnet/framework/winforms/high-dpi-support-in-windows-forms or simialr issues

Question

My API client has a permission on Host side. (Permission is just for Host not for tenants) but if I change Current Tenant ID the permission checker return the client does not have permission? See code below.

using (CurrentUnitOfWork.SetTenantId(input.TenantId)) { if (!PermissionChecker.IsGranted(AppPermissions.ApiClient_BroadcastList_Edit)) { throw new AbpAuthorizationException("You are not authorized to create user!"); } ... ...

if I check permisson before setting tenant it works (passes the control) Permission is added as multiTenancySides: MultiTenancySides.Host

Any way to do this except changin permission from "host" to "host and clients".

there are workarounds like changing tenant in the sub method etc. but I find it strange that permisson is checked according to current selected Tenant

Change PAssword setting for tenants on settign area (forexample 3 mandatory character) create new tenant assign random password and set change password at the next login password ruels does not work at that screen to change the password. but that rules suceessfulyl works on change my password. that rules should work on both screen

Hi,

I created a project before like MyCompany.ProjectName (V5.3.0) now I want to create same project with 6.1.0

It allows me to create ProjectName but not MyCompany.ProjectName after you change the project creation page layout.

Thanks, Tugrul

I need a select query with where conditions to query without having a tenant filter. in the other way to give an example; How to get all products from all tenants (not from Host account from all tenants) in 1 query?

Question

Hi All,

The excel Exporter derived from EpPlusExcelExporterBase but there is no proper default ITempFileCacheManager tı initialize base class. see below (edited code)

    public class MachineLocationsExcelExporter : EpPlusExcelExporterBase, IMachineLocationsExcelExporter
    {

        private readonly ITimeZoneConverter _timeZoneConverter;
        private readonly IAbpSession _abpSession;

        public MachineLocationsExcelExporter(
            ITimeZoneConverter timeZoneConverter,
            IAbpSession abpSession,
             ITempFileCacheManager tempFileCacheManager) : base(tempFileCacheManager)

And the generated code was

     public MachineLocationsExcelExporter(
            ITimeZoneConverter timeZoneConverter,
            IAbpSession abpSession)

is that proper fix or do I implement something wrong?

Showing 1 to 10 of 17 entries