Activities of "mateworkx@gmail.com"

Thank you much. I will try this tomorrow (EST) and possibly close ticket. As always, thanks for your help.

So this helps to remove the default behavior of creating a tenant admin with the default permissions?

I appreciate the links. What is the best way to implement this in my Blazor Server project so that I may modify as needed?

hi

. When a tenant admin is created as the default user I've noticed that they have ALL the permissions that the host does,

This is the default behavior, but you can change it by removing PermissionDataSeedContributor from the DI.

https://github.com/abpframework/abp/blob/dev/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo/Abp/PermissionManagement/PermissionDataSeedContributor.cs#L35

when do I use the "Default & Public" checkboxes when creating a new role?

/// <summary> 
/// A default role is automatically assigned to a new user 
/// </summary> 
public virtual bool IsDefault { get; set; } 
 
/// <summary> 
/// A static role can not be deleted/renamed 
/// </summary> 
public virtual bool IsStatic { get; set; } 
 
/// <summary> 
/// A user can see other user's public roles 
/// </summary> 
public virtual bool IsPublic { get; set; } 

So am I able to change the default await PermissionDataSeeder.SeedAsync( RolePermissionValueProvider.ProviderName, "admin", permissionNames, context?.TenantId );

to another role that I setup such as orgadmin? await PermissionDataSeeder.SeedAsync( RolePermissionValueProvider.ProviderName, "orgadmin", permissionNames, context?.TenantId );

That's what I'm thinking as well. I will attempt this and follow-up.

I can't even get the application to run at the moment. I'm getting a 500.30 error.

I just tried to republish and now I'm getting 500.30 error. I have hosting bundle installed. I'm not sure why this is so hard to do. If you can help with this issue I can get you the Logs.txt file

@Sturla and @EngincanV,

Running the abp build command did resolve the issue that I was facing. Thank you for your response and recommended solution.

Thank you. That information is very helpful. However, what I'm attempting to do here, and maybe this is my fault for not explaining correctly. My customer is wanting to have a custom CRM application that integrates with Stripe. The idea is that they would create a new customer from within the application, process payment if needed, and see regular updates on the status of each subscription. So, something like the following:

  1. Customer is created.
  2. Customer is assigned a subscription.
  3. Administrator would like to see the status of this subscription (Active, Canceled, etc.).

Thank you for your response. I apologize for needing a bit more information. I’m understanding that Id put the webhook key in appsettings.json. So thank you.

As far as plans go. Let’s say I have a plan named “ATT Blue”, I’d create that plan in Stripe, obtain the product or price Id and add that into Abp payment module gateway.

How would I assign a customer to that plan? Also, since we hold are enabled for that plan, any changes would show back in Abp correct?

Showing 1 to 10 of 13 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11