mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
6a3458f6f0
* Fix missing field in setup confirmation * Change setup buttons text
25 lines
584 B
TypeScript
25 lines
584 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
name: PropTypes.string,
|
|
password: PropTypes.string,
|
|
password_confirmation: PropTypes.string,
|
|
email: PropTypes.string,
|
|
org_name: PropTypes.string,
|
|
org_web_url: PropTypes.string,
|
|
org_logo_url: PropTypes.string,
|
|
fleet_web_address: PropTypes.string,
|
|
});
|
|
|
|
export interface IRegistrationFormData {
|
|
name: string;
|
|
password: string;
|
|
password_confirmation: string;
|
|
email: string;
|
|
org_name: string;
|
|
org_web_url: string;
|
|
org_logo_url: string;
|
|
fleet_web_address: string;
|
|
server_url: string;
|
|
}
|