Add Terms and Conditions Module

This commit is contained in:
faris Aljohari
2025-01-15 23:17:25 -06:00
parent 7956de7f56
commit ef593086bf
9 changed files with 181 additions and 0 deletions

View File

@ -404,6 +404,15 @@ export class ControllerRoute {
'This endpoint adds a new user role to the system based on the provided role data.';
};
};
static TERMS_AND_CONDITIONS = class {
public static readonly ROUTE = 'terms';
static ACTIONS = class {
public static readonly FETCH_TERMS_SUMMARY = 'Fetch Terms and Conditions';
public static readonly FETCH_TERMS_DESCRIPTION =
'This endpoint retrieves the terms and conditions for the application.';
};
};
static GROUP = class {
public static readonly ROUTE = 'group';