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/models/ApiKey.js
Tom Moor 349e971a8a
chore: Serialize domain policies on team (#1970)
* domain policies exposed on team, consistency

* fix: Remove usage of isAdmin in frontend

* test
2021-03-22 20:50:12 -07:00

34 lines
631 B
JavaScript

// @flow
import randomstring from "randomstring";
import { DataTypes, sequelize } from "../sequelize";
const ApiKey = sequelize.define(
"apiKey",
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: DataTypes.STRING,
secret: { type: DataTypes.STRING, unique: true },
},
{
paranoid: true,
hooks: {
beforeValidate: (key) => {
key.secret = randomstring.generate(38);
},
},
}
);
ApiKey.associate = (models) => {
ApiKey.belongsTo(models.User, {
as: "user",
foreignKey: "userId",
});
};
export default ApiKey;