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

winter 1.2.8 support #15

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 5 additions & 1 deletion controllers/Logs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use BackendMenu;
use Backend\Classes\Controller;
use System\Classes\SettingsManager;

/**
* Logs Backend Controller
Expand All @@ -18,12 +19,15 @@ class Logs extends Controller
\Backend\Behaviors\ListController::class,
];

public $hiddenActions = ['create', 'update'];

public $requiredPermissions = ['winter.sso.view_logs'];

public function __construct()
{
parent::__construct();

BackendMenu::setContext('Winter.SSO', 'sso', 'logs');
BackendMenu::setContext('Winter.System', 'system', 'settings');
SettingsManager::setContext('Winter.SSO', 'logs');
}
}
6 changes: 0 additions & 6 deletions controllers/logs/_list_toolbar.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
<div data-control="toolbar">
<a
href="<?= Backend::url('winter/sso/logs/create') ?>"
class="btn btn-primary wn-icon-plus">
<?= e(trans('backend::lang.form.create_title', ['name' => trans('winter.sso::lang.models.log.label')])); ?>
</a>

<button
class="btn btn-danger wn-icon-trash-o"
disabled="disabled"
Expand Down
2 changes: 1 addition & 1 deletion controllers/logs/config_list.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ modelClass: Winter\SSO\Models\Log
title: 'winter.sso::lang.models.log.label_plural'

# Link URL for each record
recordUrl: winter/sso/logs/update/:id
recordUrl: winter/sso/logs/preview/:id

# Message to display if the list is empty
noRecordsMessage: backend::lang.list.no_records
Expand Down
48 changes: 0 additions & 48 deletions controllers/logs/create.php

This file was deleted.

1 change: 0 additions & 1 deletion controllers/logs/index.php

This file was deleted.

19 changes: 0 additions & 19 deletions controllers/logs/preview.php

This file was deleted.

56 changes: 0 additions & 56 deletions controllers/logs/update.php

This file was deleted.

11 changes: 6 additions & 5 deletions models/log/columns.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ columns:
type: text
searchable: true
sortable: true
user_email:
label: winter.sso::lang.models.log.user
type: partial
path: $/winter/sso/models/log/column.user.php
clickable: true
ip:
label: winter.sso::lang.models.log.ip
type: text
Expand All @@ -39,4 +34,10 @@ columns:
type: text
sortable: true
searchable: true
invisible: false
user_email:
label: winter.sso::lang.models.log.user
type: partial
path: $/winter/sso/models/log/column.user.php
clickable: true
invisible: true
31 changes: 30 additions & 1 deletion models/log/fields.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,33 @@
fields:
id:
label: 'winter.sso::lang.models.general.id'
disabled: true
span: left

created_at:
label: 'winter.sso::lang.models.general.created_at'
type: datepicker
span: auto

provider:
label: winter.sso::lang.models.log.provider
span: left

action:
label: winter.sso::lang.models.log.action
span: auto

ip:
label: winter.sso::lang.models.log.ip
span: left

provided_id:
label: winter.sso::lang.models.log.provided_id
span: auto

provided_email:
label: winter.sso::lang.models.log.provided_email
span: left

user_email:
label: winter.sso::lang.models.log.user
span: auto