Skip to content

Commit 9764872

Browse files
authored
Merge pull request #18 from codebar-ag/main
main/production
2 parents 7f4f0cc + 797ffc2 commit 9764872

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

app/Providers/RouteServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function boot(): void
3333
}
3434

3535
return $request->user()
36-
? Limit::perMinute(200)->by($request->user()->id)
36+
? Limit::perMinute(2000000)->by($request->user()->id) // Revert to 200
3737
: Limit::perMinute(60)->by($request->ip());
3838
});
3939

changelog_internal.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ if ($user->currentTeam !== null) {
3535
'current_team' => 'counts' => $currentTeamCounts,
3636
```
3737

38+
resources/js/Layouts/AppLayout.vue
3839
```js
3940
const page = usePage();
4041
const counts = computed(() => page.props.auth.user.current_team?.counts || {});
4142
```
43+
44+
resources/js/Components/NavigationSidebarLink.vue
45+
resources/js/Components/NavigationSidebarItem.vue

0 commit comments

Comments
 (0)