publication-igid
Version:
Authorization gateway relying on an auth service for providing user editing interfaces
33 lines (22 loc) • 547 B
JavaScript
const {GeneralBusiness} = require('copious-transitions')
//const apiKeys = require.main.require('./local/api_keys')
//const myStorageClass = null
class DashboardBusines extends GeneralBusiness {
//
constructor() {
super()
this.db = null
this.rules = null
}
//
process(use_case,post_body) {
switch ( use_case ) {
default: {
return true
}
}
}
cleanup(transition,pkey,post_body) {
}
}
module.exports = new DashboardBusines()