Activities of "ian@order2invoice.com"

Thanks.

I can see the settings page in as admin. But I can't find where to make tenant settings available for the tenant.

Also how does a tenant see only their users and change settings for those user?

And how can users change setting their are allowed to change.

Or do need to write all that.

ut where is the register function?

Thanks Mehmet,

Almost there.

  1. Registration: If I want to process further information, like tenant name to create a new tenant for the user do I need to do another call to the server in the finalise clause? Or should I create a new endpoint to emulate the register call. If the latter, What is happening in this call. Is it simply creating a user, or is there more I need to do, or can to create an account service like in the easyCrm example and call registration that way.
 this.accountService.register(newUser)
  1. Forgotten User: The logic and emails for Forgotten User is together in this.accountService.sendPasswordResetCode. If I am using my own emailer I need to replace this with my own endpoint. What do I need to send. In .Net Core Identity I would do something like this but I don't know what to do is this case because I can't see the code.
         ...
         var user = await _userManager.FindByEmailAsync(Input.Email);
         var code = await _userManager.GeneratePasswordResetTokenAsync(user);
         var callbackUrl = Url.ResetPasswordCallbackLink(user.Id, code, Request.Scheme);
         ...

Hi Mehmet,

The above works thanks. Thanks.

However we need to provide our own Forget Password Page (we need to user Mailgun for emails which we can't find a way of doing within the existing framework), and Registration Page (we register a company, not a user). The links to both of these are hidden in the card-body as follows

<div class="card-body"> <router-outlet></router-outlet> </div>

Is there a way of modifying these to links to take user to our own pages?

Almost there. So finally how do I make the starter templete open up directly with the login screen rather that the public page with a login button? I can find the path in app-routing.module.ts?

Yes I have seen that. Two issues

  1. That solution requires us to recreate what is already there which we do not know. (i.e. what apis are called to accomplish login and language selection etc?). I suppose we can hide what we need using css but this is not desirable.
  2. How do we provide tenant login without the logon page?

FYI. Just a thought. I still do not understand why these layouts are not simple provided so we can just modify them as needed. Is it intended to push sales of higher licenses?

Angular

The Busines Plan in way above my pay grade. What's the eta on the next version?

Sorry Mehmet. Thank you for the above. However I don't think I have explained well enough. What I am looking for a simple exmaple of the Angular template I need to write. In asp. In ABP Zero the the sidebar and top bar componets were available and easy to customise. In Abp IO they are "hidden". Why is this the case? Do I need to buy a higher license?

Anyway, are you able to provide simple example of the Angular template I need to write

FYI I am using Angular

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