stephann
stephann
I'm confused. On read me: > $auth.validateUser > This method returns a promise that will resolve if a user's auth token exists and is valid. **This method does not accept...
My workaround: I'm validating without 'config' and checking the response's configName ``` javascript $auth.validateUser().then( function( response ) { if( response.configName == 'shopkeeper' ){ //redirect to 403 forbidden }; }); ```
This project is so cool. I'm using in my side-project (https://nindika.com), I have to thank @halfmoonui for this great framework 💛. It's okay if this project cannot be maintained. I'm...
Maybe your HTML is being loaded after `halfmoon` initialization. `halfmoon` fill `stickyAlerts` on object initialization using: ```javascript { ... stickyAlerts: document.getElementsByClassName("sticky-alerts")[0], ... ``` Maybe this can solve, but without a...
I'm having the same problem
To solve this problem, I used this fork: https://github.com/apoyan/sidekiq_status This line solve the problem: https://github.com/cryo28/sidekiq_status/pull/46/files
I was about to open an issue about it, I even created a file to test it. ```ruby require "bundler/inline" gemfile(true) do source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } gem...
Any solution for this issue?
Thanks @pirj. I've noticed that the error will only occur if the parent object has some wrong validation. I created a reproducible snippet: ```ruby require 'bundler/inline' gemfile(true) do source "https://rubygems.org"...
Yeah, @pirj. I think this is an old Rails issue that I assumed as normal behavior and I always had to work around to avoid problems. But what you think...