Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

decidim-centers

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

decidim-centers

  • 0.2.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Decidim::Centers

Gem Version [CI] Lint [CI] Test Maintainability Coverage Status

Manage your centers, roles and scopes so the users can be authorized over them. As an admin you will be able to create centers, roles and scopes (we use the model Decidim currently provides).

When a user signs up in the platform two new fields will appear in the registration form.

  • Center: Where the user works. For example: "University of Granada"
  • Scope: The work scope in which the user works. For example: "Computer Science"
  • Role: The role of the user in the center. For example: "Professor"

Registration form

Users can change the values anytime they want from the profile page.

When they create the account or update their values, a center authorization will be created or updated with the value of the center and scope the user has selected.

As an admin you will be able to configure the permissions of a component restricting the access to specific centers, roles and scopes. When you select multiple centers, roles or scopes they work as "or". When you specify the center, the role and the scope it will work as an "and" between them.

Permissions in the admin page

Installation

Add this line to your application's Gemfile:

gem "decidim-centers"

And then execute:

bundle

Install (and run) migrations:

bundle exec rails decidim_centers:install:migrations
bundle exec rails db:migrate

Depending on your Decidim version, choose the corresponding version to ensure compatibility:

VersionCompatible decidim versions
0.1.xv0.27.x
0.2.xv0.27.x

Configuration

You can customize your installation using the environment variables below:

ENVDescriptionDefaultExample
DECIDIM_CENTERS_SCOPES_ENABLEDUse scopes to categorize users too along with the centerstruefalse
DECIDIM_CENTERS_ROLES_ENABLEDUse roles to categorize users too along with the centerstruefalse

IMPORTANT: Remember to activate the verification method center in the Decidim /system admin page for your organization.

Contributing

See Decidim.

Developing

To start contributing to this project, first:

  • Install the basic dependencies (such as Ruby and PostgreSQL)
  • Clone this repository

Decidim's main repository also provides a Docker configuration file if you prefer to use Docker instead of installing the dependencies locally on your machine.

You can create the development app by running the following commands after cloning this project:

bundle
DATABASE_USERNAME=<username> DATABASE_PASSWORD=<password> bundle exec rake development_app

Note that the database user has to have rights to create and drop a database in order to create the dummy test app database.

Then to test how the module works in Decidim, start the development server:

cd development_app
DATABASE_USERNAME=<username> DATABASE_PASSWORD=<password> bundle exec rails s

In case you are using rbenv and have the rbenv-vars plugin installed for it, you can add the environment variables to the root directory of the project in a file named .rbenv-vars. If these are defined for the environment, you can omit defining these in the commands shown above.

Code Styling

Please follow the code styling defined by the different linters that ensure we are all talking with the same language collaborating on the same project. This project is set to follow the same rules that Decidim itself follows.

Rubocop linter is used for the Ruby language.

You can run the code styling checks by running the following commands from the console:

bundle exec rubocop

To ease up following the style guide, you should install the plugin to your favorite editor, such as:

Testing

To run the tests run the following in the gem development path:

bundle
DATABASE_USERNAME=<username> DATABASE_PASSWORD=<password> bundle exec rake test_app
DATABASE_USERNAME=<username> DATABASE_PASSWORD=<password> bundle exec rspec

Note that the database user has to have rights to create and drop a database in order to create the dummy test app database.

License

This engine is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE.

FAQs

Package last updated on 10 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc