Utility to authenticate in ETECSA network
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
1. Please remove stylesheet.css since you are not using it: https://gjs.guide/extensions/review-guidelines/review-guidelines.html#don-t-include-unnecessary-files 2. The prefs is not going to load in 41 because of `Adw` import (line 2 prefs.js). 3. Why do you have a copy of prefs.js in `nautaSession.js`? 4. You cannot create objects in global scope which is the same as init (line 213-214 extension.js ,line 5 and 12 keyring.js): https://gjs.guide/extensions/review-guidelines/review-guidelines.html#only-use-init-for-initialization 5. Also do this in disable: ```js this.settings = null; this.session = null; ``` If you need any help with your extension you can ask us on: - [GNOME Matrix Channel](https://matrix.to/#/#extensions:gnome.org) - IRC Bridge: irc://irc.gimpnet.org/shell-extensions
The exposed points were corrected.