Skip to content

Commit 7b896a2

Browse files
committed
feature: collaboration
1 parent 1d44ed5 commit 7b896a2

37 files changed

+863
-196
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,6 @@ yarn-error.log*
3434
# typescript
3535
*.tsbuildinfo
3636
next-env.d.ts
37+
38+
#supabase
39+
/supabase

assets/locale/en.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,21 @@
1818
"profile": {
1919
"aside-items": {
2020
"posts": "Your posts",
21-
"settings": "Settings"
21+
"settings": "Settings",
22+
"collaboration": "Collaboration"
2223
},
2324
"posts": {
2425
"header": {
2526
"title": "Posts",
2627
"subtitle": "Create and manage your posts"
2728
}
2829
},
30+
"collaboration": {
31+
"header": {
32+
"title": "Collaboration",
33+
"subtitle": "Here you can collaborate with others"
34+
}
35+
},
2936
"settings": {
3037
"header": {
3138
"title": "Settings",
@@ -64,6 +71,7 @@
6471
},
6572
"post": {
6673
"published": "Published",
67-
"draft": "Draft"
74+
"draft": "Draft",
75+
"add-collaborator": "Add a collaborator"
6876
}
6977
}

assets/locale/uk-UA.json

+10-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,21 @@
1818
"profile": {
1919
"aside-items": {
2020
"posts": "Ваші пости",
21-
"settings": "Налаштування"
21+
"settings": "Налаштування",
22+
"collaboration": "Колаборація"
2223
},
2324
"posts": {
2425
"header": {
2526
"title": "Пости",
2627
"subtitle": "Створюйте та редагуйте свої пости"
2728
}
2829
},
30+
"collaboration": {
31+
"header": {
32+
"title": "Колаборація",
33+
"subtitle": "Тут ви можете колаборувати з іншими"
34+
}
35+
},
2936
"settings": {
3037
"header": {
3138
"title": "Налаштування",
@@ -64,6 +71,7 @@
6471
},
6572
"post": {
6673
"published": "Опублікований",
67-
"draft": "Чернетка"
74+
"draft": "Чернетка",
75+
"add-collaborator": "Додати співавтора"
6876
}
6977
}

blogs-app.code-workspace

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"folders": [
3+
{
4+
"name": "project-root",
5+
"path": "./"
6+
},
7+
{
8+
"name": "supabase-functions",
9+
"path": "supabase/functions"
10+
}
11+
],
12+
"settings": {
13+
"files.exclude": {
14+
"supabase/functions/": true
15+
}
16+
}
17+
}

0 commit comments

Comments
 (0)