mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
TProtocolFilter -> TCustomProtocolFilter, TControllerFilter -> TCustomControllerFilter
This commit is contained in:
parent
ed0c5ee942
commit
6357e71456
@ -38,7 +38,7 @@ uses
|
|||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
TMVCActiveRecordProtocolFilter = class(TProtocolFilter)
|
TMVCActiveRecordProtocolFilter = class(TCustomProtocolFilter)
|
||||||
private
|
private
|
||||||
fDefaultConnectionDefName: string;
|
fDefaultConnectionDefName: string;
|
||||||
fConnectionDefFileName: string;
|
fConnectionDefFileName: string;
|
||||||
|
@ -60,7 +60,7 @@ type
|
|||||||
ALLOWS_METHODS = 'POST,GET,OPTIONS,PUT,DELETE';
|
ALLOWS_METHODS = 'POST,GET,OPTIONS,PUT,DELETE';
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TMVCCORSProtocolFilter = class(TProtocolFilter)
|
TMVCCORSProtocolFilter = class(TCustomProtocolFilter)
|
||||||
private
|
private
|
||||||
FAllowedOriginURL: string;
|
FAllowedOriginURL: string;
|
||||||
FAllowsCredentials: string;
|
FAllowsCredentials: string;
|
||||||
|
@ -31,7 +31,7 @@ uses MVCFramework;
|
|||||||
{$I dmvcframework.inc}
|
{$I dmvcframework.inc}
|
||||||
|
|
||||||
type
|
type
|
||||||
TMVCTraceProtocolFilter = class(TProtocolFilter)
|
TMVCTraceProtocolFilter = class(TCustomProtocolFilter)
|
||||||
private
|
private
|
||||||
fMaxBodySize: Int64;
|
fMaxBodySize: Int64;
|
||||||
protected
|
protected
|
||||||
@ -40,7 +40,7 @@ type
|
|||||||
constructor Create(const MaxBodySizeInTrace: UInt64 = 1024);
|
constructor Create(const MaxBodySizeInTrace: UInt64 = 1024);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
TMVCTraceControllerFilter = class(TControllerFilter)
|
TMVCTraceControllerFilter = class(TCustomControllerFilter)
|
||||||
protected
|
protected
|
||||||
procedure DoFilter(
|
procedure DoFilter(
|
||||||
const Context: TWebContext;
|
const Context: TWebContext;
|
||||||
|
Loading…
Reference in New Issue
Block a user