KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
Kendo
★ 9
Open GitHub ↗
The Powerful Access Control Framework
Download README (.md)
Explore Similar Repositories
vertx-load-balancer
:
Example on how to write a very simple load balancer using Vert.x
jupyter-paths
:
:city_sunrise: Pure JavaScript implementation of jupyter --paths --json
jekyll-dynamic-menu
:
A dynamically generated hierarchical menu in jekyll without plugins
IOC
:
Web application for Fuel station management
taxomias
:
an easy to use implementation of the NCBI taxonomy database for daily use
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
Kendo
?
Download (.md)
Kendo ====== [](https://travis-ci.org/c9s/Kendo) [](https://packagist.org/packages/corneltek/kendo) [](https://packagist.org/packages/corneltek/kendo) [](https://packagist.org/packages/corneltek/kendo) [](https://packagist.org/packages/corneltek/kendo) [](https://packagist.org/packages/corneltek/kendo) [](https://packagist.org/packages/corneltek/kendo) ## Install ```json { "require": { "corneltek/kendo": "*" } } ``` ## Development Environment Setup composer install --dev lazy build-conf db/config/database.yml lazy schema build src lazy sql --rebuild --basedata src phpunit ## Debugging Query Permissions ```sql SELECT ar.resource, ac.role, ar.operation, ac.allow FROM access_controls ac LEFT JOIN access_rules ar ON (ac.rule_id = ar.id); ``` ```sql SELECT ar.id as rule_id, ar.rules_class as rule_class, ac.role, if(ac.allow,'can', 'can not') as modal_verb, ar.operation, ar.resource FROM access_controls ac LEFT JOIN access_rules ar ON (ac.rule_id = ar.id); ```