mumuki-laboratory 9.10.0 → 9.13.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/app/assets/javascripts/mumuki_laboratory/application/bridge.js +15 -9
- data/app/assets/javascripts/mumuki_laboratory/application/confirmation.js +10 -8
- data/app/assets/javascripts/mumuki_laboratory/application/editors.js +5 -3
- data/app/assets/javascripts/mumuki_laboratory/application/progress.js +4 -4
- data/app/assets/javascripts/mumuki_laboratory/application/results-renderer.js +12 -1
- data/app/assets/javascripts/mumuki_laboratory/application/submissions-store.js +8 -2
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_dropdown.scss +11 -0
- data/app/assets/stylesheets/mumuki_laboratory/application/modules/_faqs.scss +1 -1
- data/app/controllers/application_controller.rb +8 -4
- data/app/controllers/book_controller.rb +6 -0
- data/app/controllers/chapters_controller.rb +9 -0
- data/app/controllers/discussions_controller.rb +9 -0
- data/app/controllers/exercises_controller.rb +5 -0
- data/app/controllers/faqs_controller.rb +4 -0
- data/app/controllers/lessons_controller.rb +9 -0
- data/app/controllers/users_controller.rb +37 -0
- data/app/helpers/application_helper.rb +2 -2
- data/app/helpers/concerns/with_student_path_navigation.rb +1 -1
- data/app/helpers/content_view_helper.rb +8 -0
- data/app/helpers/discussions_helper.rb +1 -1
- data/app/helpers/icons_helper.rb +1 -1
- data/app/helpers/links_helper.rb +5 -1
- data/app/helpers/menu_bar_helper.rb +8 -5
- data/app/helpers/notifications_helper.rb +13 -0
- data/app/helpers/overlapped_buttons_helper.rb +2 -1
- data/app/helpers/time_zone_helper.rb +5 -0
- data/app/helpers/user_menu_helper.rb +4 -0
- data/app/mailers/user_mailer.rb +11 -1
- data/app/views/book/show.html.erb +16 -7
- data/app/views/chapters/show.html.erb +1 -0
- data/app/views/discussions/_new_message.html.erb +1 -1
- data/app/views/discussions/show.html.erb +5 -5
- data/app/views/exercise_solutions/_results.html.erb +1 -1
- data/app/views/guides/_guide.html.erb +2 -2
- data/app/views/layouts/_progress_bar.html.erb +1 -0
- data/app/views/layouts/_progress_listing.html.erb +1 -0
- data/app/views/layouts/_user_menu.html.erb +1 -0
- data/app/views/layouts/application.html.erb +4 -0
- data/app/views/layouts/exercise_inputs/forms/_kids_form.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/forms/_problem_form.html.erb +6 -2
- data/app/views/layouts/exercise_inputs/read_only_editors/_code.html.erb +1 -1
- data/app/views/layouts/exercise_inputs/read_only_editors/_hidden.html.erb +0 -0
- data/app/views/layouts/exercise_inputs/read_only_editors/_multiple_files.html.erb +4 -4
- data/app/views/layouts/exercise_inputs/read_only_editors/_upload.html.erb +0 -0
- data/app/views/layouts/mailer.html.erb +7 -1
- data/app/views/notifications/_custom.html.erb +1 -0
- data/app/views/notifications/_dropdown.html.erb +2 -2
- data/app/views/notifications/_exam_authorization_request_updated.html.erb +2 -0
- data/app/views/notifications/_exam_registration.html.erb +2 -1
- data/app/views/notifications/previews/_custom.html.erb +1 -0
- data/app/views/notifications/previews/_discussion.html.erb +2 -0
- data/app/views/notifications/previews/_exam_authorization_request_updated.html.erb +2 -0
- data/app/views/notifications/previews/_exam_registration.html.erb +2 -0
- data/app/views/notifications/previews/_message.html.erb +2 -0
- data/app/views/user_mailer/1st_reminder.html.erb +7 -349
- data/app/views/user_mailer/1st_reminder.text.erb +0 -4
- data/app/views/user_mailer/2nd_reminder.html.erb +7 -349
- data/app/views/user_mailer/2nd_reminder.text.erb +0 -4
- data/app/views/user_mailer/3rd_reminder.html.erb +7 -349
- data/app/views/user_mailer/3rd_reminder.text.erb +0 -4
- data/app/views/user_mailer/_mail_template.erb +336 -0
- data/app/views/user_mailer/certificate.html.erb +7 -335
- data/app/views/user_mailer/certificate.text.erb +0 -3
- data/app/views/user_mailer/no_submissions_reminder.html.erb +7 -349
- data/app/views/user_mailer/no_submissions_reminder.text.erb +0 -4
- data/app/views/user_mailer/notification.html.erb +1 -0
- data/app/views/user_mailer/notification.text.erb +6 -0
- data/app/views/user_mailer/notifications/_custom.html.erb +11 -0
- data/app/views/user_mailer/notifications/_exam_authorization_request_updated.html.erb +1 -0
- data/app/views/user_mailer/notifications/_exam_registration.html.erb +7 -0
- data/app/views/user_mailer/notifications/exam_authorization_request_updated/_approved.html.erb +7 -0
- data/app/views/user_mailer/notifications/exam_authorization_request_updated/_rejected.html.erb +7 -0
- data/app/views/users/manage_notifications.html.erb +26 -0
- data/app/views/users/notifications.html.erb +54 -0
- data/config/routes.rb +4 -0
- data/lib/mumuki/laboratory.rb +1 -0
- data/lib/mumuki/laboratory/controllers.rb +1 -0
- data/lib/mumuki/laboratory/controllers/authorization.rb +5 -1
- data/lib/mumuki/laboratory/controllers/notifications.rb +2 -2
- data/lib/mumuki/laboratory/controllers/validate_access_mode.rb +15 -0
- data/lib/mumuki/laboratory/locales/en.yml +35 -1
- data/lib/mumuki/laboratory/locales/es-CL.yml +35 -1
- data/lib/mumuki/laboratory/locales/es.yml +36 -2
- data/lib/mumuki/laboratory/locales/pt.yml +35 -1
- data/lib/mumuki/laboratory/mailers/message_delivery.rb +15 -0
- data/lib/mumuki/laboratory/version.rb +1 -1
- data/spec/controllers/users_controller_spec.rb +48 -0
- data/spec/dummy/db/schema.rb +7 -1
- data/spec/features/menu_bar_spec.rb +3 -2
- data/spec/features/not_found_private_flow_spec.rb +1 -1
- data/spec/features/notifications_flow_spec.rb +2 -1
- data/spec/features/read_only_flow_spec.rb +920 -0
- data/spec/javascripts/editors-spec.js +21 -3
- data/spec/javascripts/submissions-store-spec.js +11 -0
- data/spec/mailers/previews/user_mailer_preview.rb +87 -1
- metadata +35 -19
- data/app/views/notifications/_discussion.html.erb +0 -1
- data/app/views/notifications/_exam_authorization_request.html.erb +0 -1
- data/app/views/notifications/_message.html.erb +0 -1
@@ -33,7 +33,7 @@ describe('editors', () => {
|
|
33
33
|
}
|
34
34
|
});
|
35
35
|
|
36
|
-
expect(mumuki.editors.getSubmission()).toEqual({"solution[content]":"the custom solution"});
|
36
|
+
expect(mumuki.editors.getSubmission()).toEqual({"_pristine": true, "solution[content]":"the custom solution"});
|
37
37
|
});
|
38
38
|
|
39
39
|
it('reads the form if no sources', () => {
|
@@ -43,7 +43,24 @@ describe('editors', () => {
|
|
43
43
|
<textarea class="form-control editor" name="solution[content]" id="solution_content">the solution</textarea>
|
44
44
|
</div>
|
45
45
|
</form>`);
|
46
|
-
expect(mumuki.editors.getSubmission()).toEqual({"solution[content]":"the solution"});
|
46
|
+
expect(mumuki.editors.getSubmission()).toEqual({"_pristine": true, "solution[content]":"the solution"});
|
47
|
+
});
|
48
|
+
|
49
|
+
it('reads the form when it is not the first submission', () => {
|
50
|
+
$('body').html(`
|
51
|
+
<form role="form" class="new_solution">
|
52
|
+
<div class="editor-code">
|
53
|
+
<textarea class="form-control editor" name="solution[content]" id="solution_content">the solution</textarea>
|
54
|
+
</div>
|
55
|
+
</form>
|
56
|
+
<div class=" submission-results">
|
57
|
+
<div class="bs-callout bs-callout-success">
|
58
|
+
<h4 class="text-success">
|
59
|
+
<strong><i class="fas fa-check-circle"></i> ¡Muy bien!</strong>
|
60
|
+
</h4>
|
61
|
+
</div>
|
62
|
+
</div>`);
|
63
|
+
expect(mumuki.editors.getSubmission()).toEqual({"_pristine": false, "solution[content]":"the solution"});
|
47
64
|
});
|
48
65
|
|
49
66
|
it('reads the form if no sources and exercise is multifile', () => {
|
@@ -63,6 +80,7 @@ describe('editors', () => {
|
|
63
80
|
</div>
|
64
81
|
</form>`);
|
65
82
|
expect(mumuki.editors.getSubmission()).toEqual({
|
83
|
+
"_pristine": true,
|
66
84
|
"solution[content[index.html]]": "some html",
|
67
85
|
"solution[content[receta.css]]": "some css"
|
68
86
|
});
|
@@ -70,6 +88,6 @@ describe('editors', () => {
|
|
70
88
|
|
71
89
|
it('produces empty submission if no form nor sources', () => {
|
72
90
|
$('body').html(``);
|
73
|
-
expect(mumuki.editors.getSubmission()).toEqual({});
|
91
|
+
expect(mumuki.editors.getSubmission()).toEqual({_pristine: true});
|
74
92
|
});
|
75
93
|
});
|
@@ -18,6 +18,17 @@ describe("SubmissionsStore", () => {
|
|
18
18
|
mumuki.SubmissionsStore.setSubmissionResultFor(1, passedEmptyProgramSubmissionAndResult);
|
19
19
|
expect(mumuki.SubmissionsStore.getLastSubmissionAndResult(1)).toEqual(passedEmptyProgramSubmissionAndResult);
|
20
20
|
});
|
21
|
+
|
22
|
+
it("answers the last submission result, ignoring pristiness", () => {
|
23
|
+
mumuki.SubmissionsStore.setSubmissionResultFor(1, {
|
24
|
+
submission: {
|
25
|
+
...emptyProgramSubmission,
|
26
|
+
_pristine: true
|
27
|
+
},
|
28
|
+
result: passedSubmissionResult
|
29
|
+
});
|
30
|
+
expect(mumuki.SubmissionsStore.getLastSubmissionAndResult(1)).toEqual(passedEmptyProgramSubmissionAndResult);
|
31
|
+
});
|
21
32
|
});
|
22
33
|
|
23
34
|
describe('getLastSubmissionStatus', () => {
|
@@ -3,7 +3,93 @@ class UserMailerPreview < ActionMailer::Preview
|
|
3
3
|
|
4
4
|
# Preview this email at http://localhost:3000/rails/mailers/user_mailer/we_miss_you_notification
|
5
5
|
def we_miss_you_reminder
|
6
|
-
UserMailer.we_miss_you_reminder
|
6
|
+
UserMailer.we_miss_you_reminder user, 1
|
7
7
|
end
|
8
8
|
|
9
|
+
def custom_content_plain_text_notification
|
10
|
+
UserMailer.notification notification subject: :custom,
|
11
|
+
custom_content_plain_text: 'This is the text of the mail. Awesome!',
|
12
|
+
custom_title: 'This is the title!'
|
13
|
+
end
|
14
|
+
|
15
|
+
def custom_content_html_notification
|
16
|
+
UserMailer.notification notification subject: :custom,
|
17
|
+
custom_content_html: 'This is <em>the text</em> of the mail. <strong>Awesome!</strong>',
|
18
|
+
custom_title: 'This is the title!'
|
19
|
+
end
|
20
|
+
|
21
|
+
def certificate_preview
|
22
|
+
UserMailer.certificate certificate
|
23
|
+
end
|
24
|
+
|
25
|
+
def exam_registration_preview
|
26
|
+
notification = notification target: exam_registration, subject: :exam_registration
|
27
|
+
|
28
|
+
UserMailer.notification notification
|
29
|
+
end
|
30
|
+
|
31
|
+
def exam_authorization_request_approved
|
32
|
+
notification = notification target: exam_authorization_request('approved'), subject: :exam_authorization_request_updated
|
33
|
+
|
34
|
+
UserMailer.notification notification
|
35
|
+
end
|
36
|
+
|
37
|
+
def exam_authorization_request_rejected
|
38
|
+
notification = notification target: exam_authorization_request('rejected'), subject: :exam_authorization_request_updated
|
39
|
+
|
40
|
+
UserMailer.notification notification
|
41
|
+
end
|
42
|
+
|
43
|
+
private
|
44
|
+
|
45
|
+
def exam_registration
|
46
|
+
ExamRegistration.new id: 1,
|
47
|
+
organization: organization,
|
48
|
+
description: 'Some test description',
|
49
|
+
start_time: 5.minute.ago,
|
50
|
+
end_time: 5.minutes.since
|
51
|
+
|
52
|
+
end
|
53
|
+
|
54
|
+
def exam_authorization_request(status)
|
55
|
+
ExamAuthorizationRequest.new id: 1,
|
56
|
+
user: user,
|
57
|
+
status: status,
|
58
|
+
exam: exam,
|
59
|
+
organization: organization
|
60
|
+
end
|
61
|
+
|
62
|
+
def exam
|
63
|
+
Exam.new organization: organization,
|
64
|
+
start_time: 5.minute.ago,
|
65
|
+
end_time: 5.minutes.since
|
66
|
+
end
|
67
|
+
|
68
|
+
def user
|
69
|
+
User.new uid: 'some_user@gmail.com',
|
70
|
+
first_name: 'Some',
|
71
|
+
last_name: 'User',
|
72
|
+
verified_first_name: 'Jane',
|
73
|
+
verified_last_name: 'Doe',
|
74
|
+
last_organization: organization
|
75
|
+
end
|
76
|
+
|
77
|
+
def organization
|
78
|
+
Organization.central
|
79
|
+
end
|
80
|
+
|
81
|
+
def certificate
|
82
|
+
certificate_program = CertificateProgram.find_or_create_by!(title: 'Mumuki Certificate',
|
83
|
+
description: 'Functional Programming',
|
84
|
+
organization: organization,
|
85
|
+
start_date: 1.minute.ago,
|
86
|
+
end_date: 1.hour.since)
|
87
|
+
|
88
|
+
Certificate.new user: user, certificate_program: certificate_program
|
89
|
+
end
|
90
|
+
|
91
|
+
def notification(**hash)
|
92
|
+
Notification.new({user: user,
|
93
|
+
organization: organization}.merge hash)
|
94
|
+
end
|
9
95
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mumuki-laboratory
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.
|
4
|
+
version: 9.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Franco Bulgarelli
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 9.
|
33
|
+
version: 9.13.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 9.
|
40
|
+
version: 9.13.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: mumukit-bridge
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '7.
|
61
|
+
version: '7.7'
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '7.
|
68
|
+
version: '7.7'
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: mumukit-nuntius
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '7.
|
89
|
+
version: '7.11'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '7.
|
96
|
+
version: '7.11'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: mumukit-content-type
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -114,14 +114,14 @@ dependencies:
|
|
114
114
|
requirements:
|
115
115
|
- - "~>"
|
116
116
|
- !ruby/object:Gem::Version
|
117
|
-
version: 3.0
|
117
|
+
version: '3.0'
|
118
118
|
type: :runtime
|
119
119
|
prerelease: false
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
requirements:
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
|
-
version: 3.0
|
124
|
+
version: '3.0'
|
125
125
|
- !ruby/object:Gem::Dependency
|
126
126
|
name: muvment
|
127
127
|
requirement: !ruby/object:Gem::Requirement
|
@@ -353,9 +353,6 @@ dependencies:
|
|
353
353
|
- - "~>"
|
354
354
|
- !ruby/object:Gem::Version
|
355
355
|
version: '2.0'
|
356
|
-
- - "<"
|
357
|
-
- !ruby/object:Gem::Version
|
358
|
-
version: '2.2'
|
359
356
|
type: :development
|
360
357
|
prerelease: false
|
361
358
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -363,9 +360,6 @@ dependencies:
|
|
363
360
|
- - "~>"
|
364
361
|
- !ruby/object:Gem::Version
|
365
362
|
version: '2.0'
|
366
|
-
- - "<"
|
367
|
-
- !ruby/object:Gem::Version
|
368
|
-
version: '2.2'
|
369
363
|
- !ruby/object:Gem::Dependency
|
370
364
|
name: webdrivers
|
371
365
|
requirement: !ruby/object:Gem::Requirement
|
@@ -564,6 +558,7 @@ files:
|
|
564
558
|
- app/helpers/menu_bar_helper.rb
|
565
559
|
- app/helpers/messages_helper.rb
|
566
560
|
- app/helpers/multiple_file_editor_helper.rb
|
561
|
+
- app/helpers/notifications_helper.rb
|
567
562
|
- app/helpers/open_graph_helper.rb
|
568
563
|
- app/helpers/organization_breadcrumbs_helper.rb
|
569
564
|
- app/helpers/overlapped_buttons_helper.rb
|
@@ -572,6 +567,7 @@ files:
|
|
572
567
|
- app/helpers/progress_bar_helper.rb
|
573
568
|
- app/helpers/progress_helper.rb
|
574
569
|
- app/helpers/runner_assets_helper.rb
|
570
|
+
- app/helpers/time_zone_helper.rb
|
575
571
|
- app/helpers/toast_helper.rb
|
576
572
|
- app/helpers/user_activity_helper.rb
|
577
573
|
- app/helpers/user_discussions_helper.rb
|
@@ -677,10 +673,12 @@ files:
|
|
677
673
|
- app/views/layouts/exercise_inputs/read_only_editors/_code.html.erb
|
678
674
|
- app/views/layouts/exercise_inputs/read_only_editors/_custom.html.erb
|
679
675
|
- app/views/layouts/exercise_inputs/read_only_editors/_free_form.html.erb
|
676
|
+
- app/views/layouts/exercise_inputs/read_only_editors/_hidden.html.erb
|
680
677
|
- app/views/layouts/exercise_inputs/read_only_editors/_multiple_choice.html.erb
|
681
678
|
- app/views/layouts/exercise_inputs/read_only_editors/_multiple_files.html.erb
|
682
679
|
- app/views/layouts/exercise_inputs/read_only_editors/_single_choice.html.erb
|
683
680
|
- app/views/layouts/exercise_inputs/read_only_editors/_text.erb
|
681
|
+
- app/views/layouts/exercise_inputs/read_only_editors/_upload.html.erb
|
684
682
|
- app/views/layouts/mailer.html.erb
|
685
683
|
- app/views/layouts/mailer.text.erb
|
686
684
|
- app/views/layouts/modals/_avatar_picker.html.erb
|
@@ -694,21 +692,33 @@ files:
|
|
694
692
|
- app/views/layouts/modals/_level_up.html.erb
|
695
693
|
- app/views/layouts/modals/_new_message.html.erb
|
696
694
|
- app/views/lessons/show.html.erb
|
697
|
-
- app/views/notifications/
|
695
|
+
- app/views/notifications/_custom.html.erb
|
698
696
|
- app/views/notifications/_dropdown.html.erb
|
699
|
-
- app/views/notifications/
|
697
|
+
- app/views/notifications/_exam_authorization_request_updated.html.erb
|
700
698
|
- app/views/notifications/_exam_registration.html.erb
|
701
|
-
- app/views/notifications/
|
699
|
+
- app/views/notifications/previews/_custom.html.erb
|
700
|
+
- app/views/notifications/previews/_discussion.html.erb
|
701
|
+
- app/views/notifications/previews/_exam_authorization_request_updated.html.erb
|
702
|
+
- app/views/notifications/previews/_exam_registration.html.erb
|
703
|
+
- app/views/notifications/previews/_message.html.erb
|
702
704
|
- app/views/user_mailer/1st_reminder.html.erb
|
703
705
|
- app/views/user_mailer/1st_reminder.text.erb
|
704
706
|
- app/views/user_mailer/2nd_reminder.html.erb
|
705
707
|
- app/views/user_mailer/2nd_reminder.text.erb
|
706
708
|
- app/views/user_mailer/3rd_reminder.html.erb
|
707
709
|
- app/views/user_mailer/3rd_reminder.text.erb
|
710
|
+
- app/views/user_mailer/_mail_template.erb
|
708
711
|
- app/views/user_mailer/certificate.html.erb
|
709
712
|
- app/views/user_mailer/certificate.text.erb
|
710
713
|
- app/views/user_mailer/no_submissions_reminder.html.erb
|
711
714
|
- app/views/user_mailer/no_submissions_reminder.text.erb
|
715
|
+
- app/views/user_mailer/notification.html.erb
|
716
|
+
- app/views/user_mailer/notification.text.erb
|
717
|
+
- app/views/user_mailer/notifications/_custom.html.erb
|
718
|
+
- app/views/user_mailer/notifications/_exam_authorization_request_updated.html.erb
|
719
|
+
- app/views/user_mailer/notifications/_exam_registration.html.erb
|
720
|
+
- app/views/user_mailer/notifications/exam_authorization_request_updated/_approved.html.erb
|
721
|
+
- app/views/user_mailer/notifications/exam_authorization_request_updated/_rejected.html.erb
|
712
722
|
- app/views/users/_activity_indicator.html.erb
|
713
723
|
- app/views/users/_avatar_list.html.erb
|
714
724
|
- app/views/users/_basic_profile_fields.html.erb
|
@@ -721,7 +731,9 @@ files:
|
|
721
731
|
- app/views/users/discussions.html.erb
|
722
732
|
- app/views/users/edit.html.erb
|
723
733
|
- app/views/users/exam_authorizations.html.erb
|
734
|
+
- app/views/users/manage_notifications.html.erb
|
724
735
|
- app/views/users/messages.html.erb
|
736
|
+
- app/views/users/notifications.html.erb
|
725
737
|
- app/views/users/show.html.erb
|
726
738
|
- app/views/users/terms.html.erb
|
727
739
|
- config/i18n-tasks.yml
|
@@ -746,6 +758,7 @@ files:
|
|
746
758
|
- lib/mumuki/laboratory/controllers/nested_in_exercise.rb
|
747
759
|
- lib/mumuki/laboratory/controllers/notifications.rb
|
748
760
|
- lib/mumuki/laboratory/controllers/results_rendering.rb
|
761
|
+
- lib/mumuki/laboratory/controllers/validate_access_mode.rb
|
749
762
|
- lib/mumuki/laboratory/engine.rb
|
750
763
|
- lib/mumuki/laboratory/events/events.rb
|
751
764
|
- lib/mumuki/laboratory/extensions.rb
|
@@ -757,6 +770,7 @@ files:
|
|
757
770
|
- lib/mumuki/laboratory/locales/es.yml
|
758
771
|
- lib/mumuki/laboratory/locales/pt.yml
|
759
772
|
- lib/mumuki/laboratory/locales/views.es.yml
|
773
|
+
- lib/mumuki/laboratory/mailers/message_delivery.rb
|
760
774
|
- lib/mumuki/laboratory/version.rb
|
761
775
|
- lib/tasks/assignments.rake
|
762
776
|
- lib/tasks/events.rake
|
@@ -860,6 +874,7 @@ files:
|
|
860
874
|
- spec/features/notifications_flow_spec.rb
|
861
875
|
- spec/features/profile_flow_spec.rb
|
862
876
|
- spec/features/progressive_tips_spec.rb
|
877
|
+
- spec/features/read_only_flow_spec.rb
|
863
878
|
- spec/features/runner_assets_spec.rb
|
864
879
|
- spec/features/standard_flow_spec.rb
|
865
880
|
- spec/features/terms_flow_spec.rb
|
@@ -992,6 +1007,7 @@ test_files:
|
|
992
1007
|
- spec/features/notifications_flow_spec.rb
|
993
1008
|
- spec/features/terms_flow_spec.rb
|
994
1009
|
- spec/features/home_private_flow_spec.rb
|
1010
|
+
- spec/features/read_only_flow_spec.rb
|
995
1011
|
- spec/features/runner_assets_spec.rb
|
996
1012
|
- spec/features/topic_flow_spec.rb
|
997
1013
|
- spec/features/complements_flow_spec.rb
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= menu_item :comments, :new_discussion_message, url_for([target.item, target]), { title: target.item.name.truncate_words(3) } %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= menu_item :book_open, :exam_authorization_request_updated, exam_authorizations_user_path, { description: target.exam_registration.description } %>
|
@@ -1 +0,0 @@
|
|
1
|
-
<%= menu_item :envelope, :new_message_received, url_for(target.exercise), { sender: target.sender } %>
|