-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MFA Zone tab stays empty #92
Comments
There is a CSP error but Im not sure whether that was already there before. The OCA.mfazones object is there. |
It would make it easier if I could use localhost instead of testnet setup but that's currently not working due to #93 |
It's probably because https://github.com/pondersource/mfazones/blob/main/js/plugin.js is not getting executed, will test and debug. |
This seems to have been resolved, maybe it was due to #95 |
Hm, still seeing this with
|
I can see in the js logs that a GET request to |
I also added a log to https://github.com/pondersource/mfazones/blob/main/js/plugin.js inside the attach function. I don't see the log in the console. |
Also this error message appears on an interval in the sunet-nc2 logs. It seems unrelated though.
|
This log appears on a short cycle and makes it impossible to debug other stuff. So I am going to prioritize it. Whatever it is, it seems related to mfazones so fixing it will only help I guess. |
This error message might be related. Because it is about a failure in loading the mfazones app: "Could not boot mfazones" |
The error stems from this bit of code from the mfazones "class" => "OCA\WorkflowEngine\Check\FileSystemTags",
"operator" => "is",
"value" => $tagId,
"invalid" => false Where the |
The tag is visible in the database which is not a surprise since I already in my logs that the value for
|
A look at the source code for the |
I changed the tab visibility value to $this->systemTagManager->createTag(self::TAG_NAME, false, false); to: $this->systemTagManager->createTag(self::TAG_NAME, true, false); in the mfazones |
The change is applied in this commit. |
Verified with @MahdiBaghbani that the issue is fixed. |
When I run testnet from sunet-custom-with-gss branch, the drawer tab exists but is empty. There are no errors in the web console.
Something apparently changed in my test setup that's causing this. Investigating.
The text was updated successfully, but these errors were encountered: