Skip to content

Commit

Permalink
Merge pull request #6 from fleetbase/dev-v0.0.7
Browse files Browse the repository at this point in the history
fixed init command
  • Loading branch information
roncodes authored Jul 19, 2024
2 parents 7c77d34 + 06b5eef commit 6b38d3c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 90 deletions.
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

0 comments on commit 6b38d3c

Please sign in to comment.