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: Incorrect configuration information read #39

Merged
merged 3 commits into from
Jun 11, 2022
Merged
Changes from 1 commit
Commits
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
2 changes: 1 addition & 1 deletion database/migrations/20181113071924_create_rules_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ protected function init()
*/
protected function getDbConfig(): array
{
$default = config('tauthz.database.connection') ?: config('database.default');
$default = config('tauthz.enforcers.basic.database.connection') ?: config('database.default');

$config = config("database.connections.{$default}");

Copy link
Member

@leeqvip leeqvip Jun 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zhangyue0503 First you should get the default enforcer, and then get the database.connection in it.

$default = config('tauthz.default');
$connection = config("tauthz.enforcers.{$default}.database.connection") ?: config('database.default');

$config = config("database.connections.{$connection}");

Expand Down