Skip to content
Merged
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ The main reasoning behind this choice is the software is not built to be extende
- Changed `request()->session()->get()` to more simple `session()` in blade template.
- Changed to use `$request->boolean()` where possible.
- Changed UI for DPAs and Reports.
- Changed the `app.name` config to be just TSPortal and use it in the interface.
- Upgraded external libraries:
- Upgraded laravel/framework from 13.1.1 to 13.2.0.
- Upgraded laravel/socialite from 5.25.0 to 5.26.0.
Expand Down
2 changes: 1 addition & 1 deletion app/Listeners/SendWebhookNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function handle( object $event ): void
if ( config( 'app.mattermosthook' ) ) {
Http::post( config( 'app.mattermosthook' ), [
'text' => $text,
'username' => 'TSPortal',
'username' => config( 'app.name' ),
] );
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/Schedules/IALScheduler.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function notify( string $message ): void
if ( config( 'app.mattermosthook' ) ) {
Http::post( config( 'app.mattermosthook' ), [
'text' => $message,
'username' => 'TSPortal',
'username' => config( 'app.name' ),
] );
}
}
Expand Down
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
|
*/

'name' => 'Miraheze TSPortal',
'name' => 'TSPortal',

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/layout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<i class="fa-solid fa-shield-halved"></i>
</div>
<div class="sidebar-brand-text mx-3">
<span>TSPortal</span>
<span>{{ config( 'app.name' ) }}</span>
</div>
</a>
<hr class="sidebar-divider my-0">
Expand Down