✨(frontend) new status action required on domain
Display new status flag on mail domain.
This commit is contained in:
@@ -10,6 +10,7 @@ and this project adheres to
|
|||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
- ✨(frontend) display action required status on domain
|
||||||
- ✨(domains) store last health check details on MailDomain
|
- ✨(domains) store last health check details on MailDomain
|
||||||
- ✨(domains) add support email field on domain
|
- ✨(domains) add support email field on domain
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ export const PanelMailDomains = ({ mailDomain }: MailDomainProps) => {
|
|||||||
return t('[disabled]');
|
return t('[disabled]');
|
||||||
case 'failed':
|
case 'failed':
|
||||||
return t('[failed]');
|
return t('[failed]');
|
||||||
|
case 'action_required':
|
||||||
|
return t('[action required]');
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ export interface MailDomain {
|
|||||||
created_at: string;
|
created_at: string;
|
||||||
updated_at: string;
|
updated_at: string;
|
||||||
slug: string;
|
slug: string;
|
||||||
status: 'pending' | 'enabled' | 'failed' | 'disabled';
|
status: 'pending' | 'enabled' | 'failed' | 'disabled' | 'action_required';
|
||||||
support_email: string;
|
support_email: string;
|
||||||
abilities: {
|
abilities: {
|
||||||
get: boolean;
|
get: boolean;
|
||||||
|
|||||||
Reference in New Issue
Block a user