Skip to content
Snippets Groups Projects
Commit 92903df6 authored by Thomas Schneider's avatar Thomas Schneider
Browse files

Fix RuboCop complaints

parent 6644a5bb
No related branches found
No related tags found
No related merge requests found
Pipeline #1820 failed
......@@ -23,14 +23,14 @@ gem 'jbuilder', '~> 2.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
gem 'haml-rails', '~> 2.0'
gem 'bootstrap', '~> 4.4', '>= 4.4.1'
gem 'font-awesome-sass', '~> 5.12.0'
gem 'haml-rails', '~> 2.0'
gem 'activeldap', '~> 5.2', '>= 5.2.4', :require => 'active_ldap/railtie'
gem 'net-ldap', '~> 0.16.2'
gem 'jquery-rails', '~> 4.3', '>= 4.3.5'
gem 'activeldap', '~> 5.2', '>= 5.2.4', require: 'active_ldap/railtie'
gem 'jquery-datatables', '~> 1.10', '>= 1.10.20'
gem 'jquery-rails', '~> 4.3', '>= 4.3.5'
gem 'net-ldap', '~> 0.16.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
......
# frozen_string_literal: true
class GroupsController < ApplicationController
end
......@@ -13,6 +13,6 @@ class User < ActiveLdap::Base
primary_key: 'dn'
def active?
return self.userAccountControl & 2 == 0
(userAccountControl & 2).zero?
end
end
......@@ -117,9 +117,9 @@ Rails.application.configure do
# DatabaseSelector middleware is designed as such you can define your own
# strategy for connection switching and pass that into the middleware through
# these configuration options.
# rubocop:disable Metrics/LineLength
# rubocop:disable Layout/LineLength
# config.active_record.database_selector = { delay: 2.seconds }
# config.active_record.database_resolver = ActiveRecord::Middleware::DatabaseSelector::Resolver
# config.active_record.database_resolver_context = ActiveRecord::Middleware::DatabaseSelector::Resolver::Session
# rubocop:enable Metrics/LineLength
# rubocop:enable Layout/LineLength
end
# frozen_string_literal: true
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
# incrementally modify your database, and then regenerate this schema
# definition.
#
# This file is the source Rails uses to define your schema when running `rails
# db:schema:load`. When creating a new database, `rails db:schema:load` tends to
......@@ -8,11 +11,10 @@
# migrations from scratch. Old migrations may fail to apply correctly if those
# migrations use external dependencies or application code.
#
# It's strongly recommended that you check this file into your version control system.
# It's strongly recommended that you check this file into your version control
# system.
ActiveRecord::Schema.define(version: 0) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
enable_extension 'plpgsql'
end
# frozen_string_literal: true
require 'test_helper'
class GroupsControllerTest < ActionDispatch::IntegrationTest
......
# frozen_string_literal: true
require 'test_helper'
class UsersControllerTest < ActionDispatch::IntegrationTest
......
# frozen_string_literal: true
require 'test_helper'
class GroupTest < ActiveSupport::TestCase
......
# frozen_string_literal: true
require 'test_helper'
class UserTest < ActiveSupport::TestCase
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment