Skip to content Skip to sidebar Skip to footer

Ember Best Practices For Loading Javascript/app Only After Authentication

Starting a new Ember app and was prepared to follow token authentication type structure for authentication in the restricted API routes but was then told we need to not show any of

Solution 1:

I have done option A in rails: authenticate the user on the server and then forward them to a page containing the actual client Ember application. It will be far simpler than trying to dynamically load the app on the client side. Simple is usually best.


Post a Comment for "Ember Best Practices For Loading Javascript/app Only After Authentication"