mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-10 07:01:21 +00:00
GUAC-1213: Add date and time fields, along with corresponding template/controller stubs.
This commit is contained in:
@@ -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"
|
||||
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user