GUAC-1213: Add date and time fields, along with corresponding template/controller stubs.

This commit is contained in:
Michael Jumper
2015-08-10 10:04:14 -07:00
parent 225297746d
commit 2e52382fd9
10 changed files with 230 additions and 20 deletions

View File

@@ -138,7 +138,24 @@ angular.module('rest').factory('Field', [function defineField() {
*
* @type String
*/
TIMEZONE : "TIMEZONE"
TIMEZONE : "TIMEZONE",
/**
* The type string associated with parameters that may contain dates.
* The format of the date is standardized as YYYY-MM-DD, zero-padded.
*
* @type String
*/
DATE : "DATE",
/**
* The type string associated with parameters that may contain times.
* The format of the time is stnadardized as HH:MM:DD, zero-padded,
* 24-hour.
*
* @type String
*/
TIME : "TIME"
};