Attempting to get local and remote repos back in sync
This commit is contained in:
parent
ba3978fffb
commit
1497d2d8dc
47 changed files with 5106 additions and 2539 deletions
18
src/routes/ServicesController.ts
Normal file
18
src/routes/ServicesController.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { Request, Response } from 'express';
|
||||
import { Controller, GET, Page, BaseController } from '@BridgemanAccessible/ba-web-framework';
|
||||
|
||||
/**
|
||||
* The ServicesController class is responsible for handling the services page of the site.
|
||||
*/
|
||||
@Controller()
|
||||
export class ServicesController extends BaseController {
|
||||
/**
|
||||
* Route for rendering the site's services page.
|
||||
*
|
||||
* @param req The request object.
|
||||
* @param res The response object.
|
||||
*/
|
||||
@Page('Services', 'services.ejs')
|
||||
@GET('/services')
|
||||
private services(req: Request, res: Response) {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue