bearcat 1.5.34 → 1.5.34.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/bearcat/api_array.rb +0 -0
- data/lib/bearcat/client/graph_ql.rb +0 -0
- data/lib/bearcat/client/reports.rb +9 -2
- data/lib/bearcat/client/submissions.rb +0 -0
- data/lib/bearcat/client.rb +0 -0
- data/lib/bearcat/misc_exceptions/conflict.rb +10 -0
- data/lib/bearcat/redis_connection.rb +2 -2
- data/lib/bearcat/spec_helpers.rb +0 -0
- data/lib/bearcat/version.rb +1 -1
- data/lib/bearcat.rb +9 -12
- data/spec/bearcat/client/reports_spec.rb +0 -0
- data/spec/helper.rb +0 -0
- metadata +158 -161
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11b43399e6990820563db689764742ac25433494183cdf43cb736f8b2c941585
|
|
4
|
+
data.tar.gz: 980ab9dcc33545d3ac06ed7dd7458c4c2a89b43d991865ef556758671be8cbcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ab74953098572d472952137b87d00f4f67a2e34e3ceeba160853b9273b2e899255533caa093a034830d653c575787da34a01dd4f37be6243c42e1c37487473f8
|
|
7
|
+
data.tar.gz: 46eacd9e8ef320596315092f493008819cc0effffd548ea6901efae04b681c4438fcaeecff3b73c220c5bc2ab8a30da619f202cd2a2bc3212fa116c0a7098e9d
|
data/lib/bearcat/api_array.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
@@ -5,14 +5,21 @@ module Bearcat
|
|
|
5
5
|
module Reports
|
|
6
6
|
extend ClientModule
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
PREFIX = "/api/v1/accounts"
|
|
9
|
+
|
|
10
|
+
prefix "#{PREFIX}/:account/reports/" do
|
|
9
11
|
get :report_list
|
|
10
|
-
post :start_report, ":report_name"
|
|
11
12
|
get :report_history, ":report_name"
|
|
12
13
|
get :report_status, ":report_name/:report_id"
|
|
13
14
|
delete :delete_report, ":report_name/:report_id"
|
|
14
15
|
end
|
|
15
16
|
|
|
17
|
+
def start_report(canvas_account_id, report_name, payload)
|
|
18
|
+
post("#{PREFIX}/#{canvas_account_id}/reports/#{report_name}", payload)
|
|
19
|
+
rescue Bearcat::MiscExceptions::Conflict => e
|
|
20
|
+
JSON.parse(e.response.response_body)
|
|
21
|
+
end
|
|
22
|
+
|
|
16
23
|
def download_report(url, save_location=nil)
|
|
17
24
|
#This method takes the verified URL returned in a Canvas report (attachment['url']), and if
|
|
18
25
|
#a save_location is included, it will download it in chunks to the disk to save memory. You
|
|
File without changes
|
data/lib/bearcat/client.rb
CHANGED
|
File without changes
|
|
@@ -11,8 +11,8 @@ module Bearcat
|
|
|
11
11
|
KNOWN_REDIS_URL_ENVS = %w[REDIS_URL REDISTOGO_URL REDISCLOUD_URL].freeze
|
|
12
12
|
|
|
13
13
|
class << self
|
|
14
|
-
def configured?(prefix, explicit:
|
|
15
|
-
determine_redis_provider(prefix: prefix, explicit:
|
|
14
|
+
def configured?(prefix, explicit: false)
|
|
15
|
+
determine_redis_provider(prefix: prefix, explicit: true)
|
|
16
16
|
end
|
|
17
17
|
|
|
18
18
|
def create(options = {})
|
data/lib/bearcat/spec_helpers.rb
CHANGED
|
File without changes
|
data/lib/bearcat/version.rb
CHANGED
data/lib/bearcat.rb
CHANGED
|
@@ -1,21 +1,18 @@
|
|
|
1
1
|
require 'bearcat/version'
|
|
2
2
|
require 'bearcat/client'
|
|
3
|
-
require 'bearcat/
|
|
3
|
+
require 'bearcat/misc_exceptions/conflict'
|
|
4
4
|
|
|
5
5
|
module Bearcat
|
|
6
6
|
class << self
|
|
7
7
|
require 'logger'
|
|
8
8
|
attr_accessor :master_rate_limit
|
|
9
|
-
attr_writer :rate_limit_min, :rate_limits, :max_sleep_seconds,
|
|
10
|
-
:min_sleep_seconds, :logger, :rate_limiter
|
|
9
|
+
attr_writer :rate_limit_min, :rate_limits, :max_sleep_seconds, :min_sleep_seconds, :logger
|
|
11
10
|
|
|
12
11
|
def configure
|
|
13
12
|
yield self if block_given?
|
|
14
13
|
end
|
|
15
14
|
|
|
16
|
-
|
|
17
|
-
@rate_limiter
|
|
18
|
-
end
|
|
15
|
+
attr_accessor :rate_limiter
|
|
19
16
|
|
|
20
17
|
def rate_limit_min
|
|
21
18
|
@rate_limit_min ||= 175
|
|
@@ -31,6 +28,7 @@ module Bearcat
|
|
|
31
28
|
|
|
32
29
|
def logger
|
|
33
30
|
return @logger if defined? @logger
|
|
31
|
+
|
|
34
32
|
@logger = Logger.new(STDOUT)
|
|
35
33
|
@logger.level = Logger::DEBUG
|
|
36
34
|
@logger
|
|
@@ -38,14 +36,13 @@ module Bearcat
|
|
|
38
36
|
|
|
39
37
|
def redis_pool
|
|
40
38
|
require 'bearcat/redis_connection'
|
|
41
|
-
@redis_pool ||= Bearcat::RedisConnection.create(env_prefix:
|
|
39
|
+
@redis_pool ||= Bearcat::RedisConnection.create(env_prefix: 'BEARCAT')
|
|
42
40
|
end
|
|
43
41
|
|
|
44
|
-
def redis
|
|
45
|
-
raise ArgumentError,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
end
|
|
42
|
+
def redis(&block)
|
|
43
|
+
raise ArgumentError, 'requires a block' unless block_given?
|
|
44
|
+
|
|
45
|
+
redis_pool.with(&block)
|
|
49
46
|
end
|
|
50
47
|
end
|
|
51
48
|
end
|
|
File without changes
|
data/spec/helper.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bearcat
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.34
|
|
4
|
+
version: 1.5.34.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Instructure CustomDev
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: rake
|
|
@@ -220,6 +219,7 @@ files:
|
|
|
220
219
|
- lib/bearcat/client/tabs.rb
|
|
221
220
|
- lib/bearcat/client/users.rb
|
|
222
221
|
- lib/bearcat/client_module.rb
|
|
222
|
+
- lib/bearcat/misc_exceptions/conflict.rb
|
|
223
223
|
- lib/bearcat/rate_limiting.rb
|
|
224
224
|
- lib/bearcat/rate_limiting/functions.lua
|
|
225
225
|
- lib/bearcat/rate_limiting/increment_bucket.lua
|
|
@@ -429,10 +429,8 @@ files:
|
|
|
429
429
|
- spec/fixtures/user_page_views.json
|
|
430
430
|
- spec/fixtures/user_profile.json
|
|
431
431
|
- spec/helper.rb
|
|
432
|
-
homepage:
|
|
433
432
|
licenses: []
|
|
434
433
|
metadata: {}
|
|
435
|
-
post_install_message:
|
|
436
434
|
rdoc_options: []
|
|
437
435
|
require_paths:
|
|
438
436
|
- lib
|
|
@@ -447,199 +445,198 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
447
445
|
- !ruby/object:Gem::Version
|
|
448
446
|
version: '0'
|
|
449
447
|
requirements: []
|
|
450
|
-
rubygems_version: 3.
|
|
451
|
-
signing_key:
|
|
448
|
+
rubygems_version: 3.6.9
|
|
452
449
|
specification_version: 4
|
|
453
450
|
summary: Canvas API
|
|
454
451
|
test_files:
|
|
455
|
-
- spec/bearcat_spec.rb
|
|
456
|
-
- spec/bearcat/client_spec.rb
|
|
457
452
|
- spec/bearcat/api_array_spec.rb
|
|
458
|
-
- spec/bearcat/
|
|
459
|
-
- spec/bearcat/
|
|
460
|
-
- spec/bearcat/client/canvas_files_spec.rb
|
|
461
|
-
- spec/bearcat/client/folders_spec.rb
|
|
462
|
-
- spec/bearcat/client/conferences_spec.rb
|
|
463
|
-
- spec/bearcat/client/conversations_spec.rb
|
|
464
|
-
- spec/bearcat/client/outcome_groups_spec.rb
|
|
453
|
+
- spec/bearcat/client/accounts_spec.rb
|
|
454
|
+
- spec/bearcat/client/analytics_spec.rb
|
|
465
455
|
- spec/bearcat/client/assignment_groups_spec.rb
|
|
466
456
|
- spec/bearcat/client/assignments_spec.rb
|
|
467
|
-
- spec/bearcat/client/rubric_association_spec.rb
|
|
468
|
-
- spec/bearcat/client/o_auth2_spec.rb
|
|
469
|
-
- spec/bearcat/client/search_spec.rb
|
|
470
|
-
- spec/bearcat/client/calendar_events_spec.rb
|
|
471
|
-
- spec/bearcat/client/group_memberships_spec.rb
|
|
472
|
-
- spec/bearcat/client/pages_spec.rb
|
|
473
|
-
- spec/bearcat/client/modules_spec.rb
|
|
474
|
-
- spec/bearcat/client/discussions_spec.rb
|
|
475
|
-
- spec/bearcat/client/files_spec.rb
|
|
476
|
-
- spec/bearcat/client/roles_spec.rb
|
|
477
|
-
- spec/bearcat/client/graph_ql_spec.rb
|
|
478
|
-
- spec/bearcat/client/group_categories_spec.rb
|
|
479
|
-
- spec/bearcat/client/rubric_assessment_spec.rb
|
|
480
457
|
- spec/bearcat/client/blueprint_courses_spec.rb
|
|
481
|
-
- spec/bearcat/client/
|
|
482
|
-
- spec/bearcat/client/
|
|
458
|
+
- spec/bearcat/client/calendar_events_spec.rb
|
|
459
|
+
- spec/bearcat/client/canvas_files_spec.rb
|
|
460
|
+
- spec/bearcat/client/conferences_spec.rb
|
|
461
|
+
- spec/bearcat/client/content_exports_spec.rb
|
|
483
462
|
- spec/bearcat/client/content_migrations_spec.rb
|
|
463
|
+
- spec/bearcat/client/conversations_spec.rb
|
|
464
|
+
- spec/bearcat/client/courses_spec.rb
|
|
484
465
|
- spec/bearcat/client/custom_gradebook_columns_spec.rb
|
|
466
|
+
- spec/bearcat/client/discussions_spec.rb
|
|
485
467
|
- spec/bearcat/client/enrollments_spec.rb
|
|
486
|
-
- spec/bearcat/client/analytics_spec.rb
|
|
487
|
-
- spec/bearcat/client/content_exports_spec.rb
|
|
488
468
|
- spec/bearcat/client/external_tools_spec.rb
|
|
489
|
-
- spec/bearcat/client/
|
|
490
|
-
- spec/bearcat/client/
|
|
469
|
+
- spec/bearcat/client/files_spec.rb
|
|
470
|
+
- spec/bearcat/client/folders_spec.rb
|
|
471
|
+
- spec/bearcat/client/graph_ql_spec.rb
|
|
472
|
+
- spec/bearcat/client/group_categories_spec.rb
|
|
473
|
+
- spec/bearcat/client/group_membership_spec.rb
|
|
474
|
+
- spec/bearcat/client/group_memberships_spec.rb
|
|
475
|
+
- spec/bearcat/client/groups_spec.rb
|
|
491
476
|
- spec/bearcat/client/learning_outcomes_spec.rb
|
|
477
|
+
- spec/bearcat/client/module_items_spec.rb
|
|
478
|
+
- spec/bearcat/client/modules_spec.rb
|
|
479
|
+
- spec/bearcat/client/o_auth2_spec.rb
|
|
480
|
+
- spec/bearcat/client/outcome_groups_spec.rb
|
|
492
481
|
- spec/bearcat/client/outcomes_spec.rb
|
|
493
|
-
- spec/bearcat/client/
|
|
482
|
+
- spec/bearcat/client/pages_spec.rb
|
|
483
|
+
- spec/bearcat/client/quizzes_spec.rb
|
|
494
484
|
- spec/bearcat/client/reports_spec.rb
|
|
495
|
-
- spec/bearcat/client/
|
|
485
|
+
- spec/bearcat/client/roles_spec.rb
|
|
486
|
+
- spec/bearcat/client/rubric_assessment_spec.rb
|
|
487
|
+
- spec/bearcat/client/rubric_association_spec.rb
|
|
488
|
+
- spec/bearcat/client/rubric_spec.rb
|
|
489
|
+
- spec/bearcat/client/search_spec.rb
|
|
496
490
|
- spec/bearcat/client/sections_spec.rb
|
|
497
|
-
- spec/bearcat/client/
|
|
498
|
-
- spec/bearcat/client/
|
|
499
|
-
- spec/bearcat/
|
|
500
|
-
- spec/
|
|
491
|
+
- spec/bearcat/client/submissions_spec.rb
|
|
492
|
+
- spec/bearcat/client/users_spec.rb
|
|
493
|
+
- spec/bearcat/client_spec.rb
|
|
494
|
+
- spec/bearcat/rate_limiting_spec.rb
|
|
495
|
+
- spec/bearcat/stub_bearcat_spec.rb
|
|
496
|
+
- spec/bearcat_spec.rb
|
|
497
|
+
- spec/fixtures/access_token.json
|
|
498
|
+
- spec/fixtures/account_admin_create.json
|
|
499
|
+
- spec/fixtures/account_admin_delete.json
|
|
500
|
+
- spec/fixtures/account_admins.json
|
|
501
|
+
- spec/fixtures/account_courses.json
|
|
501
502
|
- spec/fixtures/account_grading_standards.json
|
|
503
|
+
- spec/fixtures/account_groups.json
|
|
504
|
+
- spec/fixtures/account_reports.json
|
|
505
|
+
- spec/fixtures/account_reports_index.json
|
|
506
|
+
- spec/fixtures/account_reports_result_success.json
|
|
507
|
+
- spec/fixtures/account_reports_start_result.json
|
|
508
|
+
- spec/fixtures/account_role.json
|
|
509
|
+
- spec/fixtures/account_roles.json
|
|
510
|
+
- spec/fixtures/account_sis_imports.json
|
|
511
|
+
- spec/fixtures/account_sub_accounts.json
|
|
512
|
+
- spec/fixtures/account_user.json
|
|
513
|
+
- spec/fixtures/account_users.json
|
|
514
|
+
- spec/fixtures/accounts.json
|
|
502
515
|
- spec/fixtures/add_custom_user_data.json
|
|
516
|
+
- spec/fixtures/add_user.json
|
|
517
|
+
- spec/fixtures/assignment.json
|
|
503
518
|
- spec/fixtures/assignment_group.json
|
|
504
|
-
- spec/fixtures/
|
|
505
|
-
- spec/fixtures/update_outcome.json
|
|
506
|
-
- spec/fixtures/section_enrollments.json
|
|
507
|
-
- spec/fixtures/outcome_groups.json
|
|
508
|
-
- spec/fixtures/assignments.json
|
|
509
|
-
- spec/fixtures/course_files.json
|
|
519
|
+
- spec/fixtures/assignment_groups.json
|
|
510
520
|
- spec/fixtures/assignment_section_override.json
|
|
511
|
-
- spec/fixtures/
|
|
512
|
-
- spec/fixtures/course_folder.json
|
|
513
|
-
- spec/fixtures/ok.json
|
|
514
|
-
- spec/fixtures/account_sub_accounts.json
|
|
515
|
-
- spec/fixtures/course_sections.json
|
|
516
|
-
- spec/fixtures/merge_user.json
|
|
521
|
+
- spec/fixtures/assignments.json
|
|
517
522
|
- spec/fixtures/bearcat.jpg
|
|
518
|
-
- spec/fixtures/
|
|
519
|
-
- spec/fixtures/
|
|
520
|
-
- spec/fixtures/
|
|
521
|
-
- spec/fixtures/
|
|
522
|
-
- spec/fixtures/
|
|
523
|
-
- spec/fixtures/
|
|
524
|
-
- spec/fixtures/rubric_assessment.json
|
|
525
|
-
- spec/fixtures/paged_body.json
|
|
526
|
-
- spec/fixtures/canvas_files/upload_success.json
|
|
523
|
+
- spec/fixtures/blueprint_migration.json
|
|
524
|
+
- spec/fixtures/blueprint_subscriptions.json
|
|
525
|
+
- spec/fixtures/blueprint_template.json
|
|
526
|
+
- spec/fixtures/blueprint_update_assocations_success.json
|
|
527
|
+
- spec/fixtures/calendar_event.json
|
|
528
|
+
- spec/fixtures/calendar_events.json
|
|
527
529
|
- spec/fixtures/canvas_files/declare_file.json
|
|
528
|
-
- spec/fixtures/
|
|
529
|
-
- spec/fixtures/
|
|
530
|
-
- spec/fixtures/
|
|
531
|
-
- spec/fixtures/
|
|
530
|
+
- spec/fixtures/canvas_files/upload_success.json
|
|
531
|
+
- spec/fixtures/cc.imscc
|
|
532
|
+
- spec/fixtures/communication_channels.json
|
|
533
|
+
- spec/fixtures/conclude_enrollment.json
|
|
534
|
+
- spec/fixtures/content_export.json
|
|
532
535
|
- spec/fixtures/content_migration_files/content_migration.json
|
|
533
536
|
- spec/fixtures/content_migration_files/response.json
|
|
534
|
-
- spec/fixtures/
|
|
537
|
+
- spec/fixtures/content_migration_files/upload_success.json
|
|
538
|
+
- spec/fixtures/conversation.json
|
|
539
|
+
- spec/fixtures/course.json
|
|
535
540
|
- spec/fixtures/course_conferences.json
|
|
541
|
+
- spec/fixtures/course_copy.json
|
|
542
|
+
- spec/fixtures/course_enrollments.json
|
|
543
|
+
- spec/fixtures/course_files.json
|
|
544
|
+
- spec/fixtures/course_folder.json
|
|
545
|
+
- spec/fixtures/course_folders.json
|
|
546
|
+
- spec/fixtures/course_grading_standards.json
|
|
547
|
+
- spec/fixtures/course_groups.json
|
|
548
|
+
- spec/fixtures/course_sections.json
|
|
549
|
+
- spec/fixtures/course_settings.json
|
|
550
|
+
- spec/fixtures/course_students.json
|
|
551
|
+
- spec/fixtures/create_course_discussion.json
|
|
552
|
+
- spec/fixtures/create_group_discussion.json
|
|
536
553
|
- spec/fixtures/create_outcome_in_group.json
|
|
537
|
-
- spec/fixtures/delete_custom_data_scope.json
|
|
538
|
-
- spec/fixtures/created_group_category.json
|
|
539
|
-
- spec/fixtures/created_course.json
|
|
540
|
-
- spec/fixtures/assignment_groups.json
|
|
541
|
-
- spec/fixtures/section.json
|
|
542
554
|
- spec/fixtures/create_section.json
|
|
543
|
-
- spec/fixtures/
|
|
544
|
-
- spec/fixtures/
|
|
545
|
-
- spec/fixtures/
|
|
546
|
-
- spec/fixtures/
|
|
547
|
-
- spec/fixtures/
|
|
548
|
-
- spec/fixtures/
|
|
549
|
-
- spec/fixtures/course.json
|
|
550
|
-
- spec/fixtures/rubric_association.json
|
|
551
|
-
- spec/fixtures/external_tools.json
|
|
552
|
-
- spec/fixtures/conversation.json
|
|
553
|
-
- spec/fixtures/external_tool.json
|
|
554
|
-
- spec/fixtures/course_students.json
|
|
555
|
-
- spec/fixtures/updated_course.json
|
|
556
|
-
- spec/fixtures/discussion_topics.json
|
|
557
|
-
- spec/fixtures/user_enrollments.json
|
|
558
|
-
- spec/fixtures/account_roles.json
|
|
559
|
-
- spec/fixtures/add_user.json
|
|
560
|
-
- spec/fixtures/discussion_entry_replies.json
|
|
561
|
-
- spec/fixtures/report_history.json
|
|
562
|
-
- spec/fixtures/gradebook_history.json
|
|
563
|
-
- spec/fixtures/account_sis_imports.json
|
|
564
|
-
- spec/fixtures/update_section.json
|
|
565
|
-
- spec/fixtures/conclude_enrollment.json
|
|
566
|
-
- spec/fixtures/start_report.json
|
|
555
|
+
- spec/fixtures/created_assignment.json
|
|
556
|
+
- spec/fixtures/created_course.json
|
|
557
|
+
- spec/fixtures/created_group.json
|
|
558
|
+
- spec/fixtures/created_group_category.json
|
|
559
|
+
- spec/fixtures/created_group_membership.json
|
|
560
|
+
- spec/fixtures/created_module.json
|
|
567
561
|
- spec/fixtures/custom_data.json
|
|
568
|
-
- spec/fixtures/
|
|
569
|
-
- spec/fixtures/
|
|
570
|
-
- spec/fixtures/
|
|
571
|
-
- spec/fixtures/
|
|
572
|
-
- spec/fixtures/
|
|
573
|
-
- spec/fixtures/enroll_student.json
|
|
574
|
-
- spec/fixtures/group_category.json
|
|
575
|
-
- spec/fixtures/delete_group_category.json
|
|
562
|
+
- spec/fixtures/custom_food_data.json
|
|
563
|
+
- spec/fixtures/custom_gradebook_columns/column_data.json
|
|
564
|
+
- spec/fixtures/custom_gradebook_columns/custom_gradebook_column.json
|
|
565
|
+
- spec/fixtures/custom_gradebook_columns/custom_gradebook_columns.json
|
|
566
|
+
- spec/fixtures/custom_gradebook_columns/gradebook_column_progress.json
|
|
576
567
|
- spec/fixtures/dashboard.json
|
|
577
|
-
- spec/fixtures/
|
|
568
|
+
- spec/fixtures/delete_course.json
|
|
569
|
+
- spec/fixtures/delete_custom_data_scope.json
|
|
570
|
+
- spec/fixtures/delete_group_category.json
|
|
571
|
+
- spec/fixtures/delete_section.json
|
|
572
|
+
- spec/fixtures/deleted_conversation.json
|
|
573
|
+
- spec/fixtures/deleted_group.json
|
|
578
574
|
- spec/fixtures/department_level_participation.json
|
|
579
|
-
- spec/fixtures/
|
|
580
|
-
- spec/fixtures/
|
|
581
|
-
- spec/fixtures/
|
|
582
|
-
- spec/fixtures/
|
|
583
|
-
- spec/fixtures/
|
|
584
|
-
- spec/fixtures/
|
|
575
|
+
- spec/fixtures/department_level_statistics.json
|
|
576
|
+
- spec/fixtures/discussion_entries.json
|
|
577
|
+
- spec/fixtures/discussion_entry_replies.json
|
|
578
|
+
- spec/fixtures/discussion_topic.json
|
|
579
|
+
- spec/fixtures/discussion_topics.json
|
|
580
|
+
- spec/fixtures/edited_group.json
|
|
581
|
+
- spec/fixtures/edited_group_category.json
|
|
582
|
+
- spec/fixtures/enroll_student.json
|
|
585
583
|
- spec/fixtures/enrollment_terms.json
|
|
586
|
-
- spec/fixtures/
|
|
587
|
-
- spec/fixtures/
|
|
588
|
-
- spec/fixtures/
|
|
589
|
-
- spec/fixtures/
|
|
590
|
-
- spec/fixtures/
|
|
591
|
-
- spec/fixtures/
|
|
592
|
-
- spec/fixtures/course_groups.json
|
|
593
|
-
- spec/fixtures/reactivate_enrollment.json
|
|
594
|
-
- spec/fixtures/blueprint_template.json
|
|
595
|
-
- spec/fixtures/account_courses.json
|
|
596
|
-
- spec/fixtures/calendar_events.json
|
|
597
|
-
- spec/fixtures/submissions/submission.json
|
|
598
|
-
- spec/fixtures/link_unlink_outcome.json
|
|
599
|
-
- spec/fixtures/account_reports_index.json
|
|
600
|
-
- spec/fixtures/module_items.json
|
|
601
|
-
- spec/fixtures/access_token.json
|
|
602
|
-
- spec/fixtures/progress.json
|
|
603
|
-
- spec/fixtures/module.json
|
|
584
|
+
- spec/fixtures/external_tool.json
|
|
585
|
+
- spec/fixtures/external_tools.json
|
|
586
|
+
- spec/fixtures/file.csv
|
|
587
|
+
- spec/fixtures/gradebook_history.json
|
|
588
|
+
- spec/fixtures/graph_ql_scores.json
|
|
589
|
+
- spec/fixtures/group.json
|
|
604
590
|
- spec/fixtures/group_categories.json
|
|
605
|
-
- spec/fixtures/
|
|
606
|
-
- spec/fixtures/
|
|
607
|
-
- spec/fixtures/
|
|
608
|
-
- spec/fixtures/
|
|
609
|
-
- spec/fixtures/deleted_conversation.json
|
|
591
|
+
- spec/fixtures/group_category.json
|
|
592
|
+
- spec/fixtures/group_category_groups.json
|
|
593
|
+
- spec/fixtures/group_conferences.json
|
|
594
|
+
- spec/fixtures/group_membership.json
|
|
610
595
|
- spec/fixtures/learning_outcome.json
|
|
611
|
-
- spec/fixtures/
|
|
612
|
-
- spec/fixtures/
|
|
596
|
+
- spec/fixtures/link_unlink_outcome.json
|
|
597
|
+
- spec/fixtures/merge_user.json
|
|
598
|
+
- spec/fixtures/module.json
|
|
599
|
+
- spec/fixtures/module_item.json
|
|
600
|
+
- spec/fixtures/module_item_sequence.json
|
|
601
|
+
- spec/fixtures/module_items.json
|
|
613
602
|
- spec/fixtures/modules.json
|
|
614
|
-
- spec/fixtures/
|
|
603
|
+
- spec/fixtures/no_custom_data.json
|
|
604
|
+
- spec/fixtures/ok.json
|
|
605
|
+
- spec/fixtures/outcome_group_import.json
|
|
606
|
+
- spec/fixtures/outcome_groups.json
|
|
607
|
+
- spec/fixtures/outcome_result.json
|
|
615
608
|
- spec/fixtures/outcome_subgroup.json
|
|
616
609
|
- spec/fixtures/outcome_subgroups.json
|
|
617
|
-
- spec/fixtures/
|
|
618
|
-
- spec/fixtures/
|
|
619
|
-
- spec/fixtures/
|
|
620
|
-
- spec/fixtures/
|
|
621
|
-
- spec/fixtures/
|
|
622
|
-
- spec/fixtures/group_membership.json
|
|
623
|
-
- spec/fixtures/quizzes/course_quizzes.json
|
|
610
|
+
- spec/fixtures/outcomes.json
|
|
611
|
+
- spec/fixtures/paged_body.json
|
|
612
|
+
- spec/fixtures/pages.json
|
|
613
|
+
- spec/fixtures/progress.json
|
|
614
|
+
- spec/fixtures/quizzes/course_quiz.json
|
|
624
615
|
- spec/fixtures/quizzes/course_quiz_questions.json
|
|
616
|
+
- spec/fixtures/quizzes/course_quizzes.json
|
|
625
617
|
- spec/fixtures/quizzes/quiz_assignment_override.json
|
|
626
618
|
- spec/fixtures/quizzes/quiz_extension.json
|
|
627
|
-
- spec/fixtures/
|
|
628
|
-
- spec/fixtures/
|
|
629
|
-
- spec/fixtures/
|
|
630
|
-
- spec/fixtures/
|
|
631
|
-
- spec/fixtures/
|
|
619
|
+
- spec/fixtures/reactivate_enrollment.json
|
|
620
|
+
- spec/fixtures/report_history.json
|
|
621
|
+
- spec/fixtures/report_list.json
|
|
622
|
+
- spec/fixtures/report_status.json
|
|
623
|
+
- spec/fixtures/rubric.json
|
|
624
|
+
- spec/fixtures/rubric_assessment.json
|
|
625
|
+
- spec/fixtures/rubric_association.json
|
|
626
|
+
- spec/fixtures/search_find_recipients.json
|
|
627
|
+
- spec/fixtures/section.json
|
|
628
|
+
- spec/fixtures/section_enrollments.json
|
|
632
629
|
- spec/fixtures/single_account.json
|
|
633
|
-
- spec/fixtures/
|
|
634
|
-
- spec/fixtures/
|
|
630
|
+
- spec/fixtures/start_report.json
|
|
631
|
+
- spec/fixtures/submissions/submission.json
|
|
632
|
+
- spec/fixtures/update_outcome.json
|
|
633
|
+
- spec/fixtures/update_outcome_group.json
|
|
634
|
+
- spec/fixtures/update_section.json
|
|
635
|
+
- spec/fixtures/updated_course.json
|
|
635
636
|
- spec/fixtures/user_avatars.json
|
|
636
|
-
- spec/fixtures/
|
|
637
|
-
- spec/fixtures/
|
|
638
|
-
- spec/fixtures/
|
|
639
|
-
- spec/fixtures/
|
|
640
|
-
- spec/fixtures/
|
|
641
|
-
- spec/
|
|
642
|
-
- spec/fixtures/course_grading_standards.json
|
|
643
|
-
- spec/fixtures/group_conferences.json
|
|
644
|
-
- spec/fixtures/discussion_topic.json
|
|
645
|
-
- spec/fixtures/deleted_group.json
|
|
637
|
+
- spec/fixtures/user_details.json
|
|
638
|
+
- spec/fixtures/user_enrollments.json
|
|
639
|
+
- spec/fixtures/user_logins.json
|
|
640
|
+
- spec/fixtures/user_page_views.json
|
|
641
|
+
- spec/fixtures/user_profile.json
|
|
642
|
+
- spec/helper.rb
|