0.0
No release in over a year
Official OmniAuth strategy for Monday.com.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

OmniAuth Monday

This is the official OmniAuth strategy for authenticating to Monday. To use it, you'll need to sign up for an OAuth2 Client ID and Secret at Monday.com.

Installation

gem 'omniauth-monday'

Basic Usage

use OmniAuth::Builder do
  provider :monday, ENV['MONDAY_CLIENT_ID'], ENV['MONDAY_CLIENT_SECRET'], { scope: 'me boards:read' }
end

Basic Usage Rails

In config/initializers/monday.rb

  Rails.application.config.middleware.use OmniAuth::Builder do
    provider :monday, ENV['MONDAY_CLIENT_ID'], ENV['MONDAY_CLIENT_SECRET'], { scope: 'me boards:read' }
  end

Semver

This project adheres to Semantic Versioning 2.0.0. Any violations of this scheme are considered to be bugs. All changes will be tracked here.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/rob-race/omniauth-monday.

License

The gem is available as open source under the terms of the MIT License.