Recursion-Group-K / sketch

https://sketch-frontend-d11d98fe289b.herokuapp.com/
0 stars 0 forks source link

feat/permissions #74

Closed mcnLeandro closed 2 years ago

mcnLeandro commented 2 years ago
# 権限
## Loginページ
- if !token => OK
- if token => reidrect_to /gallery

## SignUpページ
- if !token => OK
- if token => reidrect_to /gallery 

## Galleryページ
- if token => OK GET /drawings/?user=:id
- if !token => OK GET /drawing/?is_public=true

## Drawingページ
- if token => OK editable, visible
- if !toke & is_public => !editable, visible
- if !toke & !is_public => !editable, !visible

それぞれのページに権限を設定します。