Path: blob/master/src/packages/util/db-schema/lti.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: "lti",9fields: {10iss: {11type: "string",12desc: "uniquely determines the LTI provider",13},14name: {15type: "string",16desc: "displayed name (internally)",17},18config: {19type: "map",20desc: "extra information related to LTI",21},22},23rules: {24desc: "LTI Providers",25anonymous: false,26primary_key: "iss",27pg_indexes: [],28user_query: {29get: {30admin: true,31fields: {32iss: null,33name: null,34config: null,35},36},37set: {38admin: true,39fields: {40iss: null,41name: null,42config: null,43},44},45},46},47});484950