keycloak-demo/constants/index.js

9 lines
165 B
JavaScript
Raw Normal View History

2021-08-31 10:24:42 +00:00
/* eslint-disable no-bitwise */
const constants = {
PAGE_SIZE: 20,
OPENID_EXPIRE: 300, // 5min
2021-09-01 11:30:21 +00:00
ALLOW_GROUP_ROLE: ["Ironman3"],
2021-08-31 10:24:42 +00:00
};
module.exports = constants;