You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @append Whether the route should be appended or pre-pended to the array. By default we append to the end of the array
823
823
* @response An HTML response string to send back or a closure to be executed that should return the response. The closure takes in a 'params' struct of all matched params and the string will be parsed with the named value pairs as ${param}
824
824
* @statusCode The HTTP status code to send to the browser response.
825
-
* @statusText Explains the HTTP status code sent to the browser response.
826
825
* @condition A closure or UDF to execute that MUST return true to use route if matched or false and continue.
827
826
* @name The name of the route
828
827
* @domain The domain to match, including wildcards
@@ -857,7 +856,6 @@ component
857
856
booleanappend="true",
858
857
anyresponse="",
859
858
numericstatusCode=200,
860
-
stringstatusText="",
861
859
anycondition="",
862
860
stringname="",
863
861
stringdomain="",
@@ -1243,7 +1241,6 @@ component
1243
1241
"response":"", // Do we have an inline response closure
1244
1242
"ssl":false, // Are we forcing SSL
1245
1243
"statusCode":200, // The response status code
1246
-
"statusText":"Ok", // The response status text
1247
1244
"valuePairTranslation":true, // If we translate name-value pairs in the URL by convention
1248
1245
"verbs":"", // The HTTP Verbs allowed
1249
1246
"view":"", // The view to proxy to
@@ -1967,14 +1964,12 @@ component
1967
1964
*
1968
1965
* @body The body of the response a lambda or closure
1969
1966
* @statusCode The status code to use, defaults to 200
1970
-
* @statusText The status text to use, defaults to 'OK'
0 commit comments