mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-05-11 21:34:57 +00:00
feat: sales and purchases status. feat: sales and purchases auto-increment number. fix: settings find query with extra columns.
15 lines
368 B
TypeScript
15 lines
368 B
TypeScript
import Knex from 'knex';
|
|
import MetableStoreDB from 'lib/Metable/MetableStoreDB';
|
|
import Setting from 'models/Setting';
|
|
|
|
export default class SettingsStore extends MetableStoreDB {
|
|
/**
|
|
* Constructor method.
|
|
* @param {number} tenantId
|
|
*/
|
|
constructor(repository) {
|
|
super();
|
|
this.setExtraColumns(['group']);
|
|
this.setRepository(repository);
|
|
}
|
|
} |