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

pulibrary / pdc_describe / 9dbcf7a4-1c56-4510-9614-74ad5a22cff6

31 Jul 2024 02:46PM UTC coverage: 1.08% (-95.1%) from 96.17%
9dbcf7a4-1c56-4510-9614-74ad5a22cff6

push

circleci

jrgriffiniii
wip

52 of 4814 relevant lines covered (1.08%)

0.01 hits per line

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

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

3
require "nokogiri"
×
4
require "open-uri"
×
5

6
# Controller to handle the policy agreement acknowlegdement before the wizard is started
7
#
8
# The wizard flow is shown in the [mermaid diagram here](https://github.com/pulibrary/pdc_describe/blob/main/docs/wizard_flow.md).
9
#
10
class WorksWizardPolicyController < ApplicationController
×
11
  # get /works/policy
12
  def show; end
×
13

14
  # post /works/policy
15
  def update
×
16
    group = Group.find_by(code: params[:group_code]) || current_user.default_group
×
17
    if params[:agreement] == "1"
×
18
      work = Work.create!(created_by_user_id: current_user.id, group:)
×
19
      work.add_provenance_note(DateTime.now, "User agreed to the Data Acceptance and Retention policy", current_user.id)
×
20
      redirect_to work_create_new_submission_path(work)
×
21
    else
×
22
      redirect_to root_path, notice: "You must agree to the policy to deposit"
×
23
    end
×
24
  end
×
25
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

© 2025 Coveralls, Inc