diff options
author | Adam <Adam@anope.org> | 2017-06-16 11:39:17 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-06-16 11:39:17 -0400 |
commit | bc621b3612480775c945b10bcc9bd9b7e9739d97 (patch) | |
tree | fd648bae0eb8e5b1af6837af7f2df89f616015b4 /include/modules/chanserv/channel.h | |
parent | ff81c9bab8e1eddf044d7cb5d06d44b4a43c95d8 (diff) |
chanserv: always lower channel ts to remove ops on new channels
Diffstat (limited to 'include/modules/chanserv/channel.h')
-rw-r--r-- | include/modules/chanserv/channel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/modules/chanserv/channel.h b/include/modules/chanserv/channel.h index 7c114eea0..a3b06b350 100644 --- a/include/modules/chanserv/channel.h +++ b/include/modules/chanserv/channel.h @@ -40,6 +40,9 @@ class CoreExport Channel : public Serialize::Object virtual time_t GetTimeRegistered() anope_abstract; virtual void SetTimeRegistered(time_t) anope_abstract; + virtual time_t GetChannelTS() anope_abstract; + virtual void SetChannelTS(time_t) anope_abstract; + virtual time_t GetLastUsed() anope_abstract; virtual void SetLastUsed(time_t) anope_abstract; |