Skip to content
Open
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
1 change: 1 addition & 0 deletions workspaces/app-defaults/packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"@mui/icons-material": "^5.18.0",
"@mui/material": "^5.18.0",
"@red-hat-developer-hub/backstage-plugin-app-auth": "workspace:^",
"@red-hat-developer-hub/backstage-plugin-app-defaults": "workspace:^",
"@red-hat-developer-hub/backstage-plugin-app-integrations": "workspace:^",
"@red-hat-developer-hub/backstage-plugin-app-react": "workspace:^",
"@red-hat-developer-hub/backstage-plugin-global-header": "^1.21.0",
Expand Down
10 changes: 0 additions & 10 deletions workspaces/app-defaults/packages/app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,8 @@
*/

import { createApp } from '@backstage/frontend-defaults';
import catalogPlugin from '@backstage/plugin-catalog/alpha';
import scaffolderPlugin from '@backstage/plugin-scaffolder/alpha';
import { appAuthModule } from '@red-hat-developer-hub/backstage-plugin-app-auth';
import { appIntegrationsModule } from '@red-hat-developer-hub/backstage-plugin-app-integrations';
import {
appDrawerModule,
templateCardModule,
} from '@red-hat-developer-hub/backstage-plugin-app-react';
import {
globalHeaderModule,
globalHeaderTranslationsModule,
Expand All @@ -33,14 +27,10 @@ import { templateCardDemoModule } from './modules/template-card-demo';

export default createApp({
features: [
catalogPlugin,
scaffolderPlugin,
navModule,
appAuthModule,
appIntegrationsModule,
appDrawerModule,
drawerDemoModule,
templateCardModule,
templateCardDemoModule,
globalHeaderModule,
globalHeaderTranslationsModule,
Expand Down
32 changes: 16 additions & 16 deletions workspaces/app-defaults/plugins/app-auth/report-alpha.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,38 +9,38 @@ import { TranslationRef } from '@backstage/frontend-plugin-api';
export const signInTranslationRef: TranslationRef<
'plugin.app-auth.sign-in',
{
readonly 'signIn.page.title': 'Select a sign-in method';
readonly 'signIn.config.missingAuthEnvironment.description': 'Set {{ authEnvKey }} in your app configuration (for example {{ devEnv }} for local use or {{ prodEnv }} in deployed environments). Without it, the app cannot safely determine which sign-in options to offer.';
readonly 'signIn.config.missingAuthEnvironment.error': 'Missing required app configuration: auth.environment must be set';
readonly 'signIn.config.missingAuthEnvironment.panelTitle': 'Sign-in is not available';
readonly 'signIn.config.missingAuthEnvironment.description': 'Set {{ authEnvKey }} in your app configuration (for example {{ devEnv }} for local use or {{ prodEnv }} in deployed environments). Without it, the app cannot safely determine which sign-in options to offer.';
readonly 'signIn.page.title': 'Select a sign-in method';
readonly 'signIn.providers.oidc.title': 'OIDC';
readonly 'signIn.providers.oidc.message': 'Sign in using OIDC';
readonly 'signIn.providers.keycloak.title': 'Keycloak';
readonly 'signIn.providers.keycloak.message': 'Sign in using Keycloak';
readonly 'signIn.providers.pingfederate.title': 'PingFederate';
readonly 'signIn.providers.pingfederate.message': 'Sign in using PingFederate';
readonly 'signIn.providers.auth0.title': 'Auth0';
readonly 'signIn.providers.auth0.message': 'Sign in using Auth0';
readonly 'signIn.providers.saml.title': 'SAML';
readonly 'signIn.providers.saml.message': 'Sign in using SAML';
readonly 'signIn.providers.github.title': 'GitHub';
readonly 'signIn.providers.github.message': 'Sign in using GitHub';
readonly 'signIn.providers.gitlab.title': 'GitLab';
readonly 'signIn.providers.gitlab.message': 'Sign in using GitLab';
readonly 'signIn.providers.bitbucket.title': 'Bitbucket';
readonly 'signIn.providers.bitbucket.message': 'Sign in using Bitbucket';
readonly 'signIn.providers.atlassian.title': 'Atlassian';
readonly 'signIn.providers.atlassian.message': 'Sign in using Atlassian';
readonly 'signIn.providers.microsoft.title': 'Microsoft';
readonly 'signIn.providers.microsoft.message': 'Sign in using Microsoft';
readonly 'signIn.providers.bitbucket.title': 'Bitbucket';
readonly 'signIn.providers.bitbucket.message': 'Sign in using Bitbucket';
readonly 'signIn.providers.bitbucketServer.title': 'Bitbucket Server';
readonly 'signIn.providers.bitbucketServer.message': 'Sign in using Bitbucket Server';
readonly 'signIn.providers.github.title': 'GitHub';
readonly 'signIn.providers.github.message': 'Sign in using GitHub';
readonly 'signIn.providers.gitlab.title': 'GitLab';
readonly 'signIn.providers.gitlab.message': 'Sign in using GitLab';
readonly 'signIn.providers.google.title': 'Google';
readonly 'signIn.providers.google.message': 'Sign in using Google';
readonly 'signIn.providers.oidc.title': 'OIDC';
readonly 'signIn.providers.oidc.message': 'Sign in using OIDC';
readonly 'signIn.providers.keycloak.title': 'Keycloak';
readonly 'signIn.providers.keycloak.message': 'Sign in using Keycloak';
readonly 'signIn.providers.pingfederate.title': 'PingFederate';
readonly 'signIn.providers.pingfederate.message': 'Sign in using PingFederate';
readonly 'signIn.providers.okta.title': 'Okta';
readonly 'signIn.providers.okta.message': 'Sign in using Okta';
readonly 'signIn.providers.onelogin.title': 'OneLogin';
readonly 'signIn.providers.onelogin.message': 'Sign in using OneLogin';
readonly 'signIn.providers.saml.title': 'SAML';
readonly 'signIn.providers.saml.message': 'Sign in using SAML';
}
>;
```
15 changes: 14 additions & 1 deletion workspaces/app-defaults/plugins/app-defaults/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,21 @@
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/catalog-client": "^1.16.1",
"@backstage/core-components": "^0.18.11",
"@backstage/core-plugin-api": "^1.12.7",
"@backstage/frontend-plugin-api": "^0.17.2",
"@red-hat-developer-hub/backstage-plugin-app-react": "workspace:^"
"@backstage/plugin-api-docs": "^0.14.2",
"@backstage/plugin-catalog": "^2.0.6",
"@backstage/plugin-catalog-graph": "^0.6.5",
"@backstage/plugin-catalog-react": "^3.1.0",
"@backstage/plugin-scaffolder": "^1.38.0",
"@backstage/plugin-techdocs": "^1.17.7",
"@backstage/plugin-techdocs-common": "^0.1.1",
"@backstage/ui": "^0.16.0",
"@mui/material": "5.18.0",
"@red-hat-developer-hub/backstage-plugin-app-react": "workspace:^",
"@remixicon/react": ">=4.6.0 <4.9.0"
},
"peerDependencies": {
"react": "^16.13.1 || ^17.0.0 || ^18.0.0"
Expand Down
Loading
Loading