Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 71 rewrite the abstract routes #72

Open
wants to merge 39 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
d0edfb1
Update the resource routes so they work now...
Mar 24, 2021
e54b839
Apply fixes from StyleCI
austinkregel Mar 24, 2021
f42d0a9
Add query scope
Apr 10, 2021
23fcb91
Merge branch 'fix-71-rewrite-the-abstract-routes' of github.com:austi…
Apr 10, 2021
fd58aae
Apply fixes from StyleCI
austinkregel Apr 10, 2021
2a26663
Update the env
Apr 30, 2021
19cba76
Merge branch 'fix-71-rewrite-the-abstract-routes' of github.com:austi…
Apr 30, 2021
65de3c5
Apply fixes from StyleCI
austinkregel Apr 30, 2021
5b1f38c
Update Budget.php
May 7, 2021
6b3d5ce
Update the budget controller to properly scope down shit
May 14, 2021
e8f13d7
Merge branch 'fix-71-rewrite-the-abstract-routes' of github.com:austi…
May 14, 2021
730aef0
Apply fixes from StyleCI
austinkregel May 14, 2021
27e8df2
Update the action
May 14, 2021
0d40014
Merge branch 'fix-71-rewrite-the-abstract-routes' of github.com:austi…
May 14, 2021
dad1604
Rename
May 14, 2021
a5d71c9
Update the composer json to include phpcs.
May 14, 2021
29fb9aa
Update the phpcs formatting
May 14, 2021
993e9c7
Fixing cs
May 14, 2021
990b21c
Apply fixes from StyleCI
austinkregel May 14, 2021
861391d
update th filter'
May 14, 2021
0b856e0
Add seed for data
May 14, 2021
0c63d0f
Merge branch 'fix-71-rewrite-the-abstract-routes' of github.com:austi…
May 14, 2021
b8aa664
Apply fixes from StyleCI
austinkregel May 14, 2021
a377ff9
Remove docker 7.4
May 15, 2021
e8a5ccf
Update the listener
May 15, 2021
0927004
Add config files for docker horizon and crontab systems
May 15, 2021
ab642cb
Update the docker-compose.yml file for a crontab and horizon container
May 15, 2021
b970891
Merge branch 'fix-71-rewrite-the-abstract-routes' of github.com:austi…
May 15, 2021
d410db0
Rename
May 15, 2021
19af08f
Update the pipelines env and the run-tests.yml
May 15, 2021
e312401
CS fix the things
May 15, 2021
f10e8c8
Apply fixes from StyleCI
austinkregel May 15, 2021
2b69e85
CS fix the things
May 15, 2021
fe18c6f
Update the pipelienes again
May 15, 2021
8afb535
Update the cs pipeline
May 15, 2021
65555cf
Stupid rename
May 15, 2021
41efb5c
Update the compile-asssets thing
Jul 5, 2021
c0872fb
update generated resources
Jul 15, 2021
4217f36
Update the token controller
Jul 15, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update the token controller
Austin Kregel committed Jul 15, 2021
commit 4217f36cc06a586cf2e7a7409df2f5c246aadfb6
2 changes: 1 addition & 1 deletion app/Http/Controllers/Plaid/CreateLinkTokenController.php
Original file line number Diff line number Diff line change
@@ -11,6 +11,6 @@ class CreateLinkTokenController extends Controller
{
public function __invoke(Request $request, PlaidServiceContract $plaid)
{
return $plaid->createLinkToken($request->user()->id);
return $plaid->createLinkToken((string) $request->user()->id);
}
}
4 changes: 2 additions & 2 deletions app/Tag.php
Original file line number Diff line number Diff line change
@@ -71,12 +71,12 @@ protected static function booted(): void

public function getValidationCreateRules(): array
{
// TODO: Implement getValidationCreateRules() method.
return [];
}

public function getValidationUpdateRules(): array
{
// TODO: Implement getValidationUpdateRules() method.
return [];
}

public function getAbstractAllowedFilters(): array