You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Ghost, when viewing a blog post you can append "/edit" to the end of the url to edit it (assuming you're logged in). This adds that ability to Journey. The only problem I found was as follows.
User is not logged in
User appends /edit to blog url
User gets sent to login page
User logs in
User sees admin page instead of going to edit post page
This is caused by the usage of the # fragment which isn't carried across the login page. I tinkered with fixing it but r.URL.Fragment was always empty in all handlers. I imagine this is a good first step even without that.
The text was updated successfully, but these errors were encountered:
As written by @blockloop in #65 :
In Ghost, when viewing a blog post you can append "/edit" to the end of the url to edit it (assuming you're logged in). This adds that ability to Journey. The only problem I found was as follows.
This is caused by the usage of the # fragment which isn't carried across the login page. I tinkered with fixing it but r.URL.Fragment was always empty in all handlers. I imagine this is a good first step even without that.
The text was updated successfully, but these errors were encountered: