mirror of
https://github.com/outline/outline.git
synced 2026-04-22 09:48:42 -05:00
b20a341f0c
closes #2798
11 lines
200 B
TypeScript
11 lines
200 B
TypeScript
import ApiKey from "@server/models/ApiKey";
|
|
|
|
export default function present(key: ApiKey) {
|
|
return {
|
|
id: key.id,
|
|
name: key.name,
|
|
secret: key.secret,
|
|
createdAt: key.createdAt,
|
|
};
|
|
}
|