-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can I have a front-end page/endpoing that is not reflecting api? #68
Comments
Yup, the reverse would also be good, an API GET endpoint without an For now though, I'd just use express to create the endpoint you require in On Thu, Aug 14, 2014 at 9:11 AM, Mikael Møller notifications@github.com
|
Doesn't that work already? |
Nope, it makes a view endpoint for all GET API handlers: On Thu, Aug 14, 2014 at 9:18 AM, Mikael Møller notifications@github.com
|
I wanted to make a login page at
/login
, that I can redirect to whenever someone is not logged in.I created a template
front/login/getIndex.jade
and setup the angularjs routes:If I try to hit
/login
i get a 404. However, if I link to/login
from within angularjs it works.I then realized that the 404 was caused by the fact that I did not have a
getIndex
request handler defined inback/login
. The server should properly log some error message in this case!But, wouldn't it be nice to be able to have endpoints that does not require back-end data?
The text was updated successfully, but these errors were encountered: