-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: change dashboard to public_dashboard
- Loading branch information
Showing
15 changed files
with
335 additions
and
380 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from spaceone.dashboard.info.dashboard_info import * | ||
from spaceone.dashboard.info.dashboard_version_info import * | ||
from spaceone.dashboard.info.public_dashboard_info import * | ||
from spaceone.dashboard.info.public_dashboard_version_info import * | ||
from spaceone.dashboard.info.common_info import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from spaceone.core.pygrpc.server import GRPCServer | ||
from spaceone.dashboard.interface.grpc.dashboard import Dashboard | ||
from spaceone.dashboard.interface.grpc.public_dashboard import PublicDashboard | ||
|
||
__all__ = ["app"] | ||
|
||
app = GRPCServer() | ||
app.add_service(Dashboard) | ||
app.add_service(PublicDashboard) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from spaceone.dashboard.manager.dashboard_manager import DashboardManager | ||
from spaceone.dashboard.manager.dashboard_version_manager import DashboardVersionManager | ||
from spaceone.dashboard.manager.public_dashboard_manager import PublicDashboardManager | ||
from spaceone.dashboard.manager.public_dashboard_version_manager import ( | ||
PublicDashboardVersionManager, | ||
) | ||
from spaceone.dashboard.manager.identity_manager import IdentityManager |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.