An error occurred while fetching the assigned milestone of the selected merge_request.
Última Sprint
.vscode
settings.json +1 -0
src
api
authentication.js +24 -0
category.js +11 -2
event.js +16 -3
place.js +16 -3
region.js +16 -3
roadmap.js +16 -3
s3.js +1 -0
utils.js +5 -3
assets/images
roadmap.jpg +0 -0
components
custom-card
custom-card.vue +33 -11
custom-filter
custom-filter.vue +2 -25
google-map
google-map.vue +8 -3
image-uploader
image-uploader.vue +5 -1
nav-bar
nav-bar.vue +22 -12
config
google.js +0 -3
router
index.js +17 -0
routes.js +21 -5
state
modules
authentication.js +40 -0
index.js +2 -0
places.js +4 -0
roadmaps.js +1 -1
mutation-types.js +3 -0
utils
authenticationManager.js +36 -0
google.js +2 -1
loggedUserManager.js +10 -0
views
category
category.vue +32 -15
event
event-form.vue +237 -54
event-list.vue +90 -29
home
home.vue +1 -4
place
place-form.vue +188 -54
place-list.vue +7 -80
region
region-form.vue +155 -46
roadmap
roadmap-form.vue +136 -83
roadmap-list.vue +24 -19
sign-in
sign-in.vue +59 -26
app.vue +4 -0
main.js +2 -4
package-lock.json +1 -0
.vscode/settings.json
0 → 100644
+ 1
- 0
src/api/authentication.js
0 → 100644
+ 24
- 0
+ 11
- 2
@@ -15,7 +20,11 @@ export function createCategory(params) {
+ 16
- 3
+ 16
- 3