Reputation: 9499
Is it possible to override the default URL for Servicestack RegistrationFeature?
I would like to use something other than /register.
Upvotes: 1
Views: 72
Reputation: 143319
I just committed a fix so in the next release (v3.9.55+) you can configure it with:
Plugins.Add(new RegistrationFeature { AtRestPath = "/myregisterpath" });
Upvotes: 3