Path: blob/master/src/packages/util/db-schema/account-profiles.ts
1447 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Table } from "./types";67Table({8name: "account_profiles",9rules: {10desc:11"(Virtual) Table that provides access to the profiles of all users; the profile is their *publicly visible* avatar.",12virtual: "accounts",13anonymous: false,14user_query: {15get: {16pg_where: [],17options: [{ limit: 1 }], // in case user queries for [{account_id:null, profile:null}] they should not get the whole database.18fields: {19account_id: null,20profile: {21image: undefined,22color: undefined,23},24},25},26},27},28});293031