0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-31 19:08:59 +01:00

ircd::resource: Add doxygen brief for suite; also note abstraction leak.

This commit is contained in:
Jason Volk 2019-12-02 17:50:11 -08:00
parent 09e315a8f0
commit 1a22309919
2 changed files with 3 additions and 2 deletions

View file

@ -16,6 +16,7 @@ namespace ircd::m
struct resource;
}
/// Extension of the ircd::resource framework for matrix resource handlers.
struct ircd::m::resource
:ircd::resource
{

View file

@ -41,9 +41,9 @@ struct ircd::resource::method
enum ircd::resource::method::flag
:uint
{
REQUIRES_AUTH = 0x01,
REQUIRES_AUTH = 0x01, //TODO: matrix abstraction bleed.
RATE_LIMITED = 0x02,
VERIFY_ORIGIN = 0x04,
VERIFY_ORIGIN = 0x04, //TODO: matrix abstraction bleed.
CONTENT_DISCRETION = 0x08,
};