debian-mirror-gitlab/vendor/gems/omniauth_crowd
2022-10-11 01:57:18 +05:30
..
lib New upstream version 15.4.2+ds1 2022-10-11 01:57:18 +05:30
spec New upstream version 15.4.2+ds1 2022-10-11 01:57:18 +05:30
.gitlab-ci.yml New upstream version 15.3.1+ds1 2022-08-27 11:52:29 +05:30
Gemfile New upstream version 15.2.2+ds1 2022-08-13 15:12:31 +05:30
Gemfile.lock New upstream version 15.4.2+ds1 2022-10-11 01:57:18 +05:30
LICENSE.txt New upstream version 15.2.2+ds1 2022-08-13 15:12:31 +05:30
omniauth_crowd.gemspec New upstream version 15.4.2+ds1 2022-10-11 01:57:18 +05:30
Rakefile New upstream version 15.2.2+ds1 2022-08-13 15:12:31 +05:30
README.md New upstream version 15.2.2+ds1 2022-08-13 15:12:31 +05:30

omniauth_crowd

This is fork of omniauth_crowd to support:

  1. OmniAuth v1 and v2. OmniAuth v2 disables GET requests by default and defaults to POST. GitLab already has patched v1 to use POST, but other dependencies need to be updated: https://gitlab.com/gitlab-org/gitlab/-/issues/30073.
  2. We may deprecate this library entirely in the future: https://gitlab.com/gitlab-org/gitlab/-/issues/366212

The omniauth_crowd library is an OmniAuth provider that supports authentication against Atlassian Crowd REST apis.

Build Status

Install and use

1. Add the OmniAuth Crowd REST plugin to your Gemfile

gem 'omniauth', '>= 1.0.0'  # We depend on this
gem "omniauth_crowd"

2. You will need to configure OmniAuth to use your crowd authentication. This is generally done in Rails in the config/initializers/omniauth.rb with...

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :crowd, :crowd_server_url=>"https://crowd.mycompanyname.com/crowd", :application_name=>"app", :application_password=>"password"
end

You will need to supply the correct server URL, application name and password

Contributing to omniauth_crowd

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

Copyright (c) 2011-14 Rob Di Marco. See LICENSE.txt for further details.