Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 5 minutes is to be converted to milli- seconds to store the value.

  • 5 minutes = 5 * 60 seconds = 5 * 60 * 1000 = 300000 milli 300 seconds

The default value of min time ( min ) will be stored as 0

Code Block
timeLimits:
{
   questionset: {
           min: 0,
           max: 300000300
        }
}

Open Question

Need confirmation if timeLimits is to be stored as seconds or milli-seconds ?

...