Skip to content

Commit 07eb225

Browse files
committed
#375: fixed invalid segment configuration
1 parent 918ad2d commit 07eb225

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

segments/bff.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"./domain/authentication/login": { "default": { "access": "public" } },
44
"./domain/authentication/logout": { "default": { "access": "public" } },
55

6+
"./domain/creator/aggregate": { "default": { "access": "private" }},
7+
"./domain/creator/getByIdAggregated": { "default": { "access": "private" } },
68
"./domain/creator/getByNicknameAggregated": { "default": { "access": "public" } },
79
"./domain/creator/getMeAggregated": { "default": { "access": "public" } },
810
"./domain/creator/updateFullName": { "default": { "access": "public" } },
@@ -13,18 +15,20 @@
1315
"./domain/creator.metrics/updateFollowing": { "subscriptions": { "access": "private" } },
1416
"./domain/creator.metrics/updatePosts": { "subscriptions": { "access": "private" } },
1517

18+
"./domain/notification/aggregate": { "default": { "access": "private" } },
1619
"./domain/notification/notify": { "subscriptions": { "access": "private" } },
1720
"./domain/notification/getRecentAggregated": { "default": { "access": "public" } },
1821
"./domain/notification/getByIdAggregated": { "default": { "access": "public" } },
1922

23+
"./domain/post/aggregate": { "default": { "access": "private" } },
2024
"./domain/post/create": { "default": { "access": "private" }, "subscribe": { "access": "private" } },
2125
"./domain/post/createWithComic": { "default": { "access": "public" } },
2226
"./domain/post/createWithComment": { "default": { "access": "public" } },
27+
"./domain/post/getByCreatorAggregated": { "default": { "access": "public" } },
28+
"./domain/post/getByFollowingAggregated": { "default": { "access": "public" } },
2329
"./domain/post/exploreAggregated": { "default": { "access": "public" } },
2430
"./domain/post/getByIdAggregated": { "default": { "access": "public" } },
2531
"./domain/post/getByParentAggregated": { "default": { "access": "public" } },
26-
"./domain/post/getByCreatorAggregated": { "default": { "access": "public" } },
27-
"./domain/post/getByFollowingAggregated": { "default": { "access": "public" } },
2832
"./domain/post/getRecommendedAggregated": { "default": { "access": "public"}},
2933
"./domain/post/remove": { "default": { "access": "public" }, "subscribe": { "access": "private" } },
3034

@@ -34,6 +38,7 @@
3438

3539
"./domain/rating/toggle": { "default": { "access": "public" }, "subscribe": { "access": "private" } },
3640

41+
"./domain/relation/aggregate": { "default": { "access": "private" }},
3742
"./domain/relation/exploreAggregated": { "default": { "access": "public" } },
3843
"./domain/relation/establish": { "default": { "access": "public" }, "subscribe": { "access": "private" } },
3944
"./domain/relation/getAggregated": { "default": { "access": "public" } },

segments/reads.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33

44
"./domain/comment/getById": { "default": { "access": "protected" } },
55

6-
"./domain/creator/getById": { "default": { "access": "protected" } },
6+
"./domain/creator/generateNickname/retrieveByNickname": { "default": { "access": "protected" } },
7+
"./domain/creator/generateNickname/retrieveByStartNickname": { "default": { "access": "protected" } },
78
"./domain/creator/getByEmail": { "default": { "access": "protected" } },
9+
"./domain/creator/getById": { "default": { "access": "protected" } },
810
"./domain/creator/getByNickname": { "default": { "access": "protected" } },
911
"./domain/creator/getMe": { "default": { "access": "protected" } },
12+
"./domain/creator/getOthers": { "default": { "access": "private" }},
13+
"./domain/creator/updateNickname/retrieveByNickname": { "default": { "access": "protected" } },
1014

1115
"./domain/creator.metrics/getByCreator": { "default": { "access": "protected" } },
1216

segments/writes.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,19 @@
66
"./domain/comment/erase": { "default": { "access": "protected" } },
77

88
"./domain/creator/create": { "default": { "access": "protected" } },
9+
"./domain/creator/erase": { "default": { "access": "protected" } },
910
"./domain/creator/update": { "default": { "access": "protected" } },
1011

1112
"./domain/creator.metrics/create/insertData": { "default": { "access": "protected" } },
1213
"./domain/creator.metrics/update": { "default": { "access": "protected" } },
1314

14-
"./domain/image/save": { "default": { "access": "protected" } },
1515
"./domain/image/erase": { "default": { "access": "protected" } },
16+
"./domain/image/save": { "default": { "access": "protected" } },
1617

1718
"./domain/post/create/insertData": { "default": { "access": "protected" } },
1819
"./domain/post/erase": { "default": { "access": "protected" } },
1920
"./domain/post/remove/deleteData": { "default": { "access": "protected" }},
21+
"./domain/post/remove/undeleteData": { "default": { "access": "protected" }},
2022
"./domain/post/update": { "default": { "access": "protected" } },
2123

2224
"./domain/post.metrics/create/insertData": { "default": { "access": "protected" } },

0 commit comments

Comments
 (0)