Add Privacy Policy Module and Controller

This commit is contained in:
faris Aljohari
2025-01-16 23:32:42 -06:00
parent ddacefe055
commit dc11133057
8 changed files with 122 additions and 0 deletions

View File

@ -413,6 +413,16 @@ export class ControllerRoute {
'This endpoint retrieves the terms and conditions for the application.';
};
};
static PRIVACY_POLICY = class {
public static readonly ROUTE = 'policy';
static ACTIONS = class {
public static readonly FETCH_POLICY_SUMMARY = 'Fetch Privacy Policy';
public static readonly FETCH_POLICY_DESCRIPTION =
'This endpoint retrieves the privacy policy for the application.';
};
};
static GROUP = class {
public static readonly ROUTE = 'group';