• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

uclibs / treatment_database / 4b238a57-97b9-4818-b523-5e7c6bb78664

11 Mar 2025 09:58PM UTC coverage: 98.764%. First build
4b238a57-97b9-4818-b523-5e7c6bb78664

push

circleci

web-flow
Merge SSO into Main (#573)

* Pin Rails, actionmailer, actionpack, actiontext to version 6.1.7.9 and bundle install (#559)

* Hotfix for navigation views. (#563)

Co-authored-by: Thomas Scherz <scherztc@ucmail.uc.edu>

* Update to Rails version 6.1.7.10 for security fix (#564)

* Update to Ruby 3.3.6 (#569)

* Add configuration to run github workflow jira-pr-updater-action (#568)

* Security updates (#571)

* Bundle update

* Fix CircleCI

* Pin concurrent-ruby

* Pin concurrent-ruby

* Yarn upgrade

* FEATURE BRANCH - 407 Add SSO (#498)

* Add SSO with Shibboleth

* LIBTREATDB-56 Replace Devise with Custom Session Management - FEATURE BRANCH (#532)

* Copy ucrate tests - first pass

* Add necessary gems

* reviewed test list

* files reviewed 51724

* reviewed tests and deleted or modified

* Test update 5/20

* LIBTREATDB-38 add sso configuration to environment variables (#528)

* LIBTREATDB-61 - Remove env variables (#529)

* Remove Shibboleth environment variables, comment out Shibboleth tests

* LIBTREATDB-61 link issue to Jira

* Copy ucrate tests - first pass

reviewed test list

LIBTREATDB-55 set up to use shibboleth with middleware (#530)

* Remove Shibboleth environment variables, comment out Shibboleth tests

* LIBTREATDB-61 link issue to Jira

* LIBTREATDB-55 Set up middleware to use Shibboleth

* LIBTREATDB-55 Rubocop fix

* WIP

* Revert "WIP"

This reverts commit <a class=hub.com/uclibs/treatment_database/commit/9a3987c91ea32d7e0410fd9bb3a34905fcfc8431">9a3987c91.

* Re-run bundle install

* Upgrade to pagy 9

* Add test for callbacks controller

* Rubocop fix for new callbacks controller spec

LIBTREATDB-55 set up to use shibboleth with middleware (#530)

* Remove Shibboleth environment variables, comment out Shibboleth tests

* LIBTREATDB-61 link issue to Jira

* LIBTREATDB-55 Set up middleware to use Shibboleth

* LIBTREATDB-55 Rubocop fix

* WIP

* Revert "WIP"

This reverts commit 9a3987c91ea32d7e0410fd9bb3a34905fcfc8431.

* Re-run bundle install

* Upgrade to pagy 9

* Add test for callback... (continued)

168 of 225 new or added lines in 16 files covered. (74.67%)

639 of 647 relevant lines covered (98.76%)

25.06 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

96.88
/app/controllers/admin/users_controller.rb
1
# frozen_string_literal: true
2

3
module Admin
2✔
4
  class UsersController < ApplicationController
2✔
5
    before_action :authorize_admin
2✔
6
    before_action :set_user, only: %i[show edit update destroy]
2✔
7

8
    def index
2✔
NEW
9
      @users = User.all
1✔
10
    end
11

12
    def show; end
2✔
13

14
    def new
2✔
NEW
15
      @user = User.new
×
16
    end
17

18
    def edit; end
2✔
19

20
    def create
2✔
NEW
21
      @user = User.new(user_params)
2✔
22

NEW
23
      if @user.save
2✔
NEW
24
        redirect_to admin_users_path, notice: 'User created successfully.'
1✔
25
      else
NEW
26
        flash.now[:alert] = 'There was a problem creating the user. Please check the errors below.'
1✔
NEW
27
        render :new
1✔
28
      end
29
    end
30

31
    def update
2✔
32
      if @user.update(user_params)
4✔
33
        redirect_to admin_users_path, notice: 'Profile updated successfully.'
3✔
34
      else
NEW
35
        flash.now[:alert] = 'There was a problem editing the user. Please check the errors below.'
1✔
NEW
36
        render :edit
1✔
37
      end
38
    end
39

40
    def destroy
2✔
NEW
41
      redirect_to admin_users_path, alert: 'User deletion is not permitted.'
1✔
42
    end
43

44
    private
2✔
45

46
    def set_user
2✔
47
      @user = User.find(params[:id])
6✔
48
    end
49

50
    def authorize_admin
2✔
51
      redirect_to root_path, alert: 'Access denied.' unless admin?
9✔
52
    end
53

54
    def user_params
2✔
55
      permitted_attributes = %i[username display_name]
6✔
56
      permitted_attributes += %i[role account_active] if admin?
6✔
57
      params.require(:user).permit(permitted_attributes)
6✔
58
    end
59
  end
60
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc