meetling icon indicating copy to clipboard operation
meetling copied to clipboard

Track creation time of objects

Open noyainrain opened this issue 10 years ago • 1 comments

Introduce Object.create_time which stores when an object was created. Display this for meetings.

noyainrain avatar Oct 07 '15 15:10 noyainrain

Conversion between datetime and string:

# string -> datetime
datetime(*(int(x) for x in re.split(r'\D', create_time)[:-1]))
# datetime -> string
create_time.isoformat() + 'Z'

noyainrain avatar Oct 20 '15 16:10 noyainrain