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.
Files
outline/server/presenters/team.js
2021-10-04 22:00:47 -07:00

21 lines
473 B
JavaScript

// @flow
import env from "../env";
import { Team } from "../models";
export default function present(team: Team) {
return {
id: team.id,
name: team.name,
avatarUrl: team.logoUrl,
sharing: team.sharing,
collaborativeEditing: !!(
team.collaborativeEditing && env.COLLABORATION_URL
),
documentEmbeds: team.documentEmbeds,
guestSignin: team.guestSignin,
subdomain: team.subdomain,
domain: team.domain,
url: team.url,
};
}