├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib ├── action-util.js ├── actions │ ├── add.js │ ├── create.js │ ├── destroy.js │ ├── find-by-id.js │ ├── find.js │ ├── populate.js │ ├── remove.js │ └── update.js └── index.js ├── package.json └── test ├── bad_migrations └── test_migration.js ├── bad_seeds └── test_seed.js ├── index.js ├── knexfile.js ├── migrations └── test_migration.js ├── models ├── counties.js ├── index.js ├── tokens.js └── users.js ├── plugin-api.js └── seeds └── test_seed.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/README.md -------------------------------------------------------------------------------- /lib/action-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/action-util.js -------------------------------------------------------------------------------- /lib/actions/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/add.js -------------------------------------------------------------------------------- /lib/actions/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/create.js -------------------------------------------------------------------------------- /lib/actions/destroy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/destroy.js -------------------------------------------------------------------------------- /lib/actions/find-by-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/find-by-id.js -------------------------------------------------------------------------------- /lib/actions/find.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/find.js -------------------------------------------------------------------------------- /lib/actions/populate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/populate.js -------------------------------------------------------------------------------- /lib/actions/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/remove.js -------------------------------------------------------------------------------- /lib/actions/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/actions/update.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/package.json -------------------------------------------------------------------------------- /test/bad_migrations/test_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/bad_migrations/test_migration.js -------------------------------------------------------------------------------- /test/bad_seeds/test_seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/bad_seeds/test_seed.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/index.js -------------------------------------------------------------------------------- /test/knexfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/knexfile.js -------------------------------------------------------------------------------- /test/migrations/test_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/migrations/test_migration.js -------------------------------------------------------------------------------- /test/models/counties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/models/counties.js -------------------------------------------------------------------------------- /test/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/models/index.js -------------------------------------------------------------------------------- /test/models/tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/models/tokens.js -------------------------------------------------------------------------------- /test/models/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/models/users.js -------------------------------------------------------------------------------- /test/plugin-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/plugin-api.js -------------------------------------------------------------------------------- /test/seeds/test_seed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hapipal/tandy/HEAD/test/seeds/test_seed.js --------------------------------------------------------------------------------