@immobiliarelabs/backstage-plugin-ldap-auth
Login page and client-side token management for BAckstage LDAP Authentication Plugin
This plugin is not meant to be used alone but in pair with:
All the current LTS versions are supported.
Table of Content
Installation
These packages are available on npm.
You can install them in your backstage installation using yarn workspace
$ npm install -g yarn
$ yarn workspace app add @immobiliarelabs/backstage-plugin-ldap-auth
$ yarn workspace backend add @immobiliarelabs/backstage-plugin-ldap-auth-backend
Configuration
The react components accepts childrens to allow you to customize the login page look and feel
The component out of the box only shows the form, but you can pass down children components to render your logos/top bar os whatever you want!
In the App.tsx
file, change the createApp
function adding a components
with our custom SignInPage
Note: This components isn't only UI, it also brings all the token state management and HTTP API calls to the backstage auth routes we already configured in the backend part.
packages/app/src/App.tsx
import { LdapAuthFrontendPage } from '@immobiliarelabs/backstage-plugin-ldap-auth';
const app = createApp({
components: {
SignInPage: (props) => (
<LdapAuthFrontendPage {...props} provider="ldap" />
),
},
});
Now follow instructions at @immobiliarelabs/backstage-plugin-ldap-auth-backend to add backend authentication logic!
Powered Apps
Backstage Plugin LDAP Auth was created by the amazing Node.js team at ImmobiliareLabs, the Tech dept of Immobiliare.it, the #1 real estate company in Italy.
We are currently using Backstage Plugin LDAP Auth in our products as well as our internal toolings.
If you are using Backstage Plugin LDAP Auth in production drop us a message.
Support & Contribute
Made with ❤️ by ImmobiliareLabs & Contributors
We'd love for you to contribute to Backstage Plugin LDAP Auth!
If you have any questions on how to use Backstage Plugin LDAP Auth, bugs and enhancement please feel free to reach out by opening a GitHub Issue.
License
Backstage Plugin LDAP Auth is licensed under the MIT license.
See the LICENSE file for more information.