pub async fn get(
__arg0: State<Arc<AppState>>,
__arg1: Extension<CurrentUser<Uuid>>,
) -> Result<impl IntoResponse, Error>
Expand description
GET /api/v1/auth/devices
Returns list of logged in devices
requires auth: no
ยงResponse Example
json!([
{
"device_name": "My Device!"
"created_at": "1752418856"
}
]);