You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

apiEndpoints.js 275B

1234567891011
  1. export default {
  2. authentications: {
  3. login: "api/auth/local",
  4. register: "api/auth/local/register",
  5. refreshToken: "api/token/refresh",
  6. authProvider: "api/auth/google/callback?access_token={accessToken}",
  7. },
  8. users: {
  9. logout: "api/auth/logout",
  10. },
  11. };