mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 13:37:30 +00:00
relates to #21559 This adds the ability for end users to enrol their own device in fleet mdm. > NOTE: this new byod HTML page is a separate HTML asset that contains all styles and scripts needed for the page to work. We do not send the fleet UI assets and this drastically cuts down the response time to the users who will be visiting this page on mobile devices There are two sides included in this: **Adding a new add host modal ios and iPad section for IT admins**  **delivering a new byod HTML page to end users that will allow end users to download the config profile to enrol into fleet mdm**  <!-- Note that API documentation changes are now addressed by the product design team. --> - [x] Changes file added for user-visible changes in `changes/`, `orbit/changes/` or `ee/fleetd-chrome/changes`. See [Changes files](https://github.com/fleetdm/fleet/blob/main/docs/Contributing/Committing-Changes.md#changes-files) for more information. - [ ] Added/updated tests - [x] Manual QA for all new/changed functionality
23 lines
358 B
JavaScript
23 lines
358 B
JavaScript
import InputField from ".";
|
|
|
|
const meta = {
|
|
component: InputField,
|
|
title: "Components/FormFields/InputField",
|
|
};
|
|
|
|
export default meta;
|
|
|
|
export const Basic = {};
|
|
|
|
export const WithCopyEnabled = {
|
|
args: {
|
|
enableCopy: true,
|
|
},
|
|
};
|
|
|
|
export const WithCopyEnabledInsideInput = {
|
|
args: {
|
|
enableCopy: true,
|
|
copyButtonPosition: "inside",
|
|
},
|
|
};
|