Fixed the permission (#1217)
This commit is contained in:
parent
5f90d841d0
commit
ad9ed5ea00
|
@ -11,6 +11,7 @@ This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||||
### Fixed
|
### Fixed
|
||||||
* Hitting Ctrl+Z when editing a file on the web now works as expected.
|
* Hitting Ctrl+Z when editing a file on the web now works as expected.
|
||||||
* Logo now links to the correct location on all pages.
|
* Logo now links to the correct location on all pages.
|
||||||
|
* Permissions checking to determine if a user can see the task management page now works correctly.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
* Attempting to upload a folder via the web file manager will now display a warning telling the user to use SFTP.
|
* Attempting to upload a folder via the web file manager will now display a warning telling the user to use SFTP.
|
||||||
|
|
|
@ -146,7 +146,7 @@
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
@endcan
|
@endcan
|
||||||
@can('list-tasks', $server)
|
@can('list-schedules', $server)
|
||||||
<li
|
<li
|
||||||
@if(starts_with(Route::currentRouteName(), 'server.schedules'))
|
@if(starts_with(Route::currentRouteName(), 'server.schedules'))
|
||||||
class="active"
|
class="active"
|
||||||
|
|
Loading…
Reference in New Issue