Jump to content

Possible to get a weekly email digest of commits???


diegobowen

Recommended Posts

Yep,

using our query system:

cm find "changesets where owner='manu' and date >= 'thisweek'"

You can use the following keywords:

  • today -> from 00:00 of today
  • yesterday -> from 00:00 of yesterday
  • thisweek -> from 00:00 of the beginning of the week (caution! use DateTime functions because the "week start" is different depending on the date config, sample: week starts on Monday in Spain but Sunday in USA).
  • thismonth -> since the first day of the current month
  • thisyear -> since the first day of the current year
  • onedayago -> current date - 24 hours
  • oneweekago -> currentdate - 7 days
  • onemonthago -> current date - 30 days
  • daysago(n) -> can we implement a "function"?? if so, parse daysago(), get the "n" in the middle and calculate.
  • monthsago(n) -> same as daysago(n) but for months
  • yearsago(n) -> same as daysago(n) bug for months

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...