This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/server/presenters/team.js

19 lines
457 B
JavaScript
Raw Normal View History

2017-07-07 03:59:45 +00:00
// @flow
2021-09-11 05:46:57 +00:00
import env from "../env";
import { Team } from "../models";
2017-07-07 03:59:45 +00:00
export default function present(team: Team) {
return {
id: team.id,
name: team.name,
2018-11-12 05:17:03 +00:00
avatarUrl: team.logoUrl,
sharing: team.sharing,
2021-09-11 05:46:57 +00:00
collaborativeEditing: team.collaborativeEditing && env.COLLABORATION_URL,
documentEmbeds: team.documentEmbeds,
guestSignin: team.guestSignin,
subdomain: team.subdomain,
domain: team.domain,
url: team.url,
};
}