The frontend is half wired up, just need to update the button. I also want to update the recipe methods to return the favorite status. This will follow very similar to the way I updated the tags. Another method which can be called to attach the favorite state.
35 lines
1.2 KiB
Go
35 lines
1.2 KiB
Go
package domain
|
|
|
|
// Sub-routes
|
|
const VERSION = "/v1"
|
|
const WEB = "/web"
|
|
const API = "/api"
|
|
const STATE = "/state"
|
|
|
|
// Web prefixed routes
|
|
const WEB_LOGIN = VERSION + WEB + "/login"
|
|
const WEB_INDEX = VERSION + WEB
|
|
const WEB_HOME = VERSION + WEB + "/home"
|
|
const WEB_FAVORITES = VERSION + WEB + "/favorites"
|
|
const WEB_CREATE = VERSION + WEB + "/create"
|
|
const WEB_PROFIlE = VERSION + WEB + "/profile"
|
|
const WEB_LIST = VERSION + WEB + "/list"
|
|
const WEB_RECIPE = VERSION + WEB + "/recipe/%d"
|
|
const WEB_SEARCH = VERSION + WEB + "/search"
|
|
const WEB_NOT_FOUND = VERSION + WEB + "/404"
|
|
|
|
// API prefixed routes
|
|
const API_AUTH_LOGIN = VERSION + API + "/auth/login"
|
|
const API_AUTH_CALLBACK = VERSION + API + "/auth/callback"
|
|
const API_AUTH_LOGOUT = VERSION + API + "/auth/logout"
|
|
const API_CREATE_RECIPE = VERSION + API + "/recipe"
|
|
const API_SEARCH_RECIPES = VERSION + API + "/recipe/search"
|
|
|
|
const API_ENGAGEMENT_VIEW = VERSION + API + "/engagement/view/%d"
|
|
const API_ENGAGEMENT_FAVORITE = VERSION + API + "/engagement/favorite/%d"
|
|
const API_ENGAGEMENT_MAKE = VERSION + API + "/engagement/make/%d"
|
|
|
|
// State prefixed routes
|
|
const STATE_TAGS_CREATE = VERSION + WEB + STATE + "/tags"
|
|
const STATE_TAGS_DELETE = VERSION + WEB + STATE + "/tags/delete"
|