mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-10 22:54:37 +02:00
* WIP on message last read - not fully functional yet
This commit is contained in:
parent
4988559569
commit
4a386d649e
5 changed files with 70 additions and 9 deletions
|
@ -54,6 +54,10 @@ function Message(options) {
|
|||
return true;
|
||||
};
|
||||
|
||||
this.isPrivate = function() {
|
||||
return this.areaName === Message.WellKnownAreaNames.Private ? true : false;
|
||||
};
|
||||
|
||||
this.getMessageTimestampString = function(ts) {
|
||||
ts = ts || new Date();
|
||||
return ts.toISOString();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue