0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-26 00:32:35 +01:00

modules/client/devices: Remove the unstable path handlers.

This commit is contained in:
Jason Volk 2020-03-28 17:48:24 -07:00
parent 988cc896e1
commit 39c55a8979

View file

@ -50,16 +50,6 @@ devices_resource
}
};
ircd::m::resource
devices_resource__unstable
{
"/_matrix/client/unstable/devices/",
{
"(11.9) Device Management",
resource::DIRECTORY,
}
};
m::resource::method
method_get
{
@ -69,15 +59,6 @@ method_get
}
};
m::resource::method
method_get__unstable
{
devices_resource__unstable, "GET", get__devices,
{
method_get.REQUIRES_AUTH
}
};
m::resource::method
method_delete
{
@ -87,15 +68,6 @@ method_delete
}
};
m::resource::method
method_delete__unstable
{
devices_resource__unstable, "DELETE", delete__devices,
{
method_delete.REQUIRES_AUTH
}
};
m::resource::method
method_put
{
@ -105,15 +77,6 @@ method_put
}
};
m::resource::method
method_put__unstable
{
devices_resource__unstable, "PUT", put__devices,
{
method_put.REQUIRES_AUTH
}
};
m::resource::response
get__devices(client &client,
const m::resource::request &request)