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
|
||||
|
||||
TMVCActiveRecordProtocolFilter = class(TProtocolFilter)
|
||||
TMVCActiveRecordProtocolFilter = class(TCustomProtocolFilter)
|
||||
private
|
||||
fDefaultConnectionDefName: string;
|
||||
fConnectionDefFileName: string;
|
||||
|
@ -60,7 +60,7 @@ type
|
||||
ALLOWS_METHODS = 'POST,GET,OPTIONS,PUT,DELETE';
|
||||
end;
|
||||
|
||||
TMVCCORSProtocolFilter = class(TProtocolFilter)
|
||||
TMVCCORSProtocolFilter = class(TCustomProtocolFilter)
|
||||
private
|
||||
FAllowedOriginURL: string;
|
||||
FAllowsCredentials: string;
|
||||
|
@ -31,7 +31,7 @@ uses MVCFramework;
|
||||
{$I dmvcframework.inc}
|
||||
|
||||
type
|
||||
TMVCTraceProtocolFilter = class(TProtocolFilter)
|
||||
TMVCTraceProtocolFilter = class(TCustomProtocolFilter)
|
||||
private
|
||||
fMaxBodySize: Int64;
|
||||
protected
|
||||
@ -40,7 +40,7 @@ type
|
||||
constructor Create(const MaxBodySizeInTrace: UInt64 = 1024);
|
||||
end;
|
||||
|
||||
TMVCTraceControllerFilter = class(TControllerFilter)
|
||||
TMVCTraceControllerFilter = class(TCustomControllerFilter)
|
||||
protected
|
||||
procedure DoFilter(
|
||||
const Context: TWebContext;
|
||||
|
Loading…
Reference in New Issue
Block a user