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

fixed init command #6

Merged
merged 1 commit into from
Jul 19, 2024
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
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetbase/registry-bridge",
"version": "0.0.6",
"version": "0.0.7",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"keywords": [
"fleetbase-extension",
Expand Down
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Registry Bridge",
"version": "0.0.6",
"version": "0.0.7",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"repository": "https://github.com/fleetbase/registry-bridge",
"license": "AGPL-3.0-or-later",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/registry-bridge-engine",
"version": "0.0.6",
"version": "0.0.7",
"description": "Internal Bridge between Fleetbase API and Extensions Registry",
"fleetbase": {
"route": "extensions"
Expand Down
4 changes: 2 additions & 2 deletions server/src/Console/Commands/Initialize.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Fleetbase\RegistryBridge\Console\Commands;

use Fleetbase\RegistryBridge\Providers\RegistryBridgeServiceProvider;
use Fleetbase\RegistryBridge\Support\Utils;
use Illuminate\Console\Command;

class Initialize extends Command
Expand All @@ -28,7 +28,7 @@ class Initialize extends Command
*/
public function handle()
{
RegistryBridgeServiceProvider::bootRegistryAuth(true);
Utils::bootRegistryAuth(true);

return 0;
}
Expand Down
84 changes: 0 additions & 84 deletions server/src/Console/Commands/PostInstallExtension.php

This file was deleted.

1 change: 0 additions & 1 deletion server/src/Providers/RegistryBridgeServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class RegistryBridgeServiceProvider extends CoreServiceProvider
* @var array
*/
public $commands = [
\Fleetbase\RegistryBridge\Console\Commands\PostInstallExtension::class,
\Fleetbase\RegistryBridge\Console\Commands\Initialize::class,
];

Expand Down
Loading