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:
parent
09e315a8f0
commit
1a22309919
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue