Skip to content

Commit

Permalink
Merge branch 'pelican-dev:main' into fix/655
Browse files Browse the repository at this point in the history
  • Loading branch information
RMartinOscar authored Oct 28, 2024
2 parents 122f303 + 1a3dc5c commit 2cfa91a
Show file tree
Hide file tree
Showing 64 changed files with 1,060 additions and 668 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
types:
- published

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push:
name: Build and Push
Expand All @@ -26,7 +30,7 @@ jobs:
id: docker_meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/pelican-dev/panel
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=false
tags: |
Expand Down
19 changes: 0 additions & 19 deletions app/Events/Server/Created.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Server/Creating.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Server/Deleted.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Server/Deleting.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Server/Saved.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Server/Saving.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Server/Updated.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Server/Updating.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Subuser/Created.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Subuser/Creating.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Subuser/Deleted.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/Subuser/Deleting.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/User/Created.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/User/Creating.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/User/Deleted.php

This file was deleted.

19 changes: 0 additions & 19 deletions app/Events/User/Deleting.php

This file was deleted.

2 changes: 1 addition & 1 deletion app/Filament/Resources/ApiKeyResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ApiKeyResource extends Resource

public static function getNavigationBadge(): ?string
{
return static::getModel()::where('key_type', '2')->count() ?: null;
return static::getModel()::where('key_type', ApiKey::TYPE_APPLICATION)->count() ?: null;
}

public static function canEdit(Model $record): bool
Expand Down
Loading

0 comments on commit 2cfa91a

Please sign in to comment.