mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
44 lines
824 B
ObjectPascal
44 lines
824 B
ObjectPascal
|
unit WebModuleUnit1;
|
||
|
|
||
|
interface
|
||
|
|
||
|
uses System.SysUtils,
|
||
|
System.Classes,
|
||
|
Web.HTTPApp,
|
||
|
MVCFramework;
|
||
|
|
||
|
type
|
||
|
TWebModule1 = class(TWebModule)
|
||
|
procedure WebModuleCreate(Sender: TObject);
|
||
|
|
||
|
private
|
||
|
MVC: TMVCEngine;
|
||
|
|
||
|
public
|
||
|
{ Public declarations }
|
||
|
end;
|
||
|
|
||
|
var
|
||
|
WebModuleClass: TComponentClass = TWebModule1;
|
||
|
|
||
|
implementation
|
||
|
|
||
|
{$R *.dfm}
|
||
|
|
||
|
|
||
|
uses AppControllerU, MiddlewareSample1;
|
||
|
|
||
|
procedure TWebModule1.WebModuleCreate(Sender: TObject);
|
||
|
begin
|
||
|
MVC := TMVCEngine.Create(Self);
|
||
|
MVC.Config[TMVCConfigKey.SessionTimeout] := '30';
|
||
|
MVC.Config[TMVCConfigKey.DefaultContentType] := 'text/plain';
|
||
|
|
||
|
MVC
|
||
|
.AddController(TApp1MainController)
|
||
|
.AddMiddleware(TMVCSalutationMiddleware.Create)
|
||
|
.AddMiddleware(TMVCRedirectAndroidDeviceOnPlayStore.Create);
|
||
|
end;
|
||
|
|
||
|
end.
|