mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import TenantRepository from 'repositories/TenantRepository';
|
|
import Setting from 'models/Setting';
|
|
|
|
export default class SettingRepository extends TenantRepository {
|
|
/**
|
|
* Gets the repository's model.
|
|
*/
|
|
get model() {
|
|
return Setting.bindKnex(this.knex);
|
|
}
|
|
} |