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

pulibrary / oawaiver / 076941d4-ad17-4a1c-a352-9706ebb98b74

17 Mar 2026 06:11PM UTC coverage: 0.0% (-100.0%) from 100.0%
076941d4-ad17-4a1c-a352-9706ebb98b74

Pull #297

circleci

web-flow
Bump devise from 4.9.3 to 5.0.3

Bumps [devise](https://github.com/heartcombo/devise) from 4.9.3 to 5.0.3.
- [Release notes](https://github.com/heartcombo/devise/releases)
- [Changelog](https://github.com/heartcombo/devise/blob/main/CHANGELOG.md)
- [Commits](https://github.com/heartcombo/devise/compare/v4.9.3...v5.0.3)

---
updated-dependencies:
- dependency-name: devise
  dependency-version: 5.0.3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #297: Bump devise from 4.9.3 to 5.0.3

0 of 1083 relevant lines covered (0.0%)

0.0 hits per line

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

0.0
/app/controllers/application_controller.rb
1
# frozen_string_literal: true
2

3
class ApplicationController < ActionController::Base
×
4
  before_action :authenticate_account!, only: [:manage]
×
5

6
  # Prevent CSRF attacks by raising an exception.
7
  # For APIs, you may want to use :null_session instead.
8
  protect_from_forgery with: :exception
×
9

10
  def manage
×
11
    @notes = params["notes"] || ""
×
12
    @accounts = Account.where(netid: current_account.netid)
×
13
    @account = Account.new
×
14

15
    render controller: "application", action: "manage"
×
16
  end
×
17

18
  def author_search_status
×
19
    current_author_status_url = AuthorStatus.status_url(context: self)
×
20
    redirect_to(current_author_status_url)
×
21
  end
×
22

23
  private
×
24

25
  rescue_from "Exception" do |exception|
×
26
    flash[:alert] = "An exception occurred: #{exception.message}"
×
27
    render controller: :application, action: :error
×
28
  end
×
29

30
  # This override is necessary for OmniauthCallbacksController
31
  def after_sign_in_path_for(_resource)
×
32
    request.env["omniauth.origin"] || new_account_session_path
×
33
  end
×
34
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