Adnan
Adnan
``` public function handle($request, Closure $next) { $user = $this->auth->user(); $permissions = $this->permission->all(); $uri = $request->route()->uri(); foreach($permissions as $permission) { if( ! $user->can($permission->name) && $permission->route == $uri) { abort(403); }...
When using either download or uploadExcludeFile under dev.sync\[\*\] with following `.gitignore` style entries ``` !/some/path/in/my/repo/ ``` Devspace is complaining that `!/some/path/in/my/repo/` should be used instead of `!some/path/in/my/repo`. But as you...
**What happened?** `devspace sync --config devspace.yaml` command exists after initial sync ``` [info] Using namespace 'my-namespace' [info] Using kube context 'my-context' [info] Waiting for pods... [info] Starting sync... [info] Start...
I guess the title is enough. /kind feature
**What happened?** Using mirrorLocal (default) initial sync, files, which are locally non-existent, were not deleted from remote because that directory was specified in the downloadExcludePaths. **What did you expect to...
I just discovered this repository and it looks very good. A question I would have is if it is possible to get the rotation a rect?
Is it possible to calculate the horizontal middle of the em square relative to the font baseline?  If we say that the alphabetic baseline (image above) is...
I was wondering how to install leapp without brew i.e. only via a bash script passing only the version? I was thinking - download via curl - unzip - and...
Could I achieve HTTP response code based failovers with caching using pipy? What I mean is - Pipy receives a request and forwards it to the **primary backend** - If...
Correct me if I am wrong but when I think of GitOps I think of things like, instead of having config and state in x amount of different locations we...