helpdesk 0.0.39 → 0.0.40
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca5ed4166f4ceaa78f7857384d7899e969d3f434
|
4
|
+
data.tar.gz: 48732a591e37de84c50d60f6d3293d8d0aa495de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e222d435aac3c9485ab6350e8c0547e7bd7be2a9b10f0cac0d1d2b9cc8520366b4d68b6a68c69153faaaa596fde960585dd45667db7e6d12adfc56f587aacb92
|
7
|
+
data.tar.gz: 2070f1ebd7dd63fa498a738bed07dbf989294c98f9eb1e76a033f58df6a5681f01d8352bf48651735b275de98cee1c7e7478a80d90d3198d7c64f5d03d510d13
|
@@ -18,7 +18,7 @@ CKEDITOR.config.toolbar = [
|
|
18
18
|
];
|
19
19
|
|
20
20
|
CKEDITOR.config.allowedContent = true;
|
21
|
-
|
21
|
+
CKEDITOR.config.contentsCss = '/assets/helpdesk/application.css';
|
22
22
|
/* Filebrowser routes */
|
23
23
|
// The location of an external file browser, that should be launched when "Browse Server" button is pressed.
|
24
24
|
CKEDITOR.config.filebrowserBrowseUrl = "/ckeditor/attachment_files";
|
@@ -2,6 +2,10 @@ body {
|
|
2
2
|
position: relative;
|
3
3
|
}
|
4
4
|
|
5
|
+
ul#faq{
|
6
|
+
margin-bottom: 200px;
|
7
|
+
}
|
8
|
+
|
5
9
|
.affix{
|
6
10
|
top: 0px;
|
7
11
|
width:inherit;
|
@@ -68,7 +72,7 @@ body {
|
|
68
72
|
}
|
69
73
|
|
70
74
|
/* hide inactive nested list */
|
71
|
-
.bs-docs-sidebar .nav
|
75
|
+
.bs-docs-sidebar .nav ul.nav {
|
72
76
|
display: none;
|
73
77
|
}
|
74
78
|
/* show active nested list */
|
@@ -19,11 +19,11 @@ module Helpdesk
|
|
19
19
|
def send_email
|
20
20
|
if self.public?
|
21
21
|
if ticket.requester == author
|
22
|
-
Helpdesk::NotificationsMailer.comment_by_requester_notification(self).
|
23
|
-
Helpdesk::NotificationsMailer.comment_by_requester_confirmation(self).
|
22
|
+
Helpdesk::NotificationsMailer.comment_by_requester_notification(self).deliver_now if ticket.requester
|
23
|
+
Helpdesk::NotificationsMailer.comment_by_requester_confirmation(self).deliver_now if Helpdesk.send_confirmation_emails
|
24
24
|
else
|
25
|
-
Helpdesk::NotificationsMailer.comment_by_helpdesk_notification(self).
|
26
|
-
Helpdesk::NotificationsMailer.comment_by_helpdesk_confirmation(self).
|
25
|
+
Helpdesk::NotificationsMailer.comment_by_helpdesk_notification(self).deliver_now if ticket.requester
|
26
|
+
Helpdesk::NotificationsMailer.comment_by_helpdesk_confirmation(self).deliver_now if Helpdesk.send_confirmation_emails
|
27
27
|
end
|
28
28
|
end
|
29
29
|
end
|
@@ -63,9 +63,9 @@ module Helpdesk
|
|
63
63
|
end
|
64
64
|
|
65
65
|
def send_email
|
66
|
-
Helpdesk::NotificationsMailer.ticket_created_notification(self).
|
66
|
+
Helpdesk::NotificationsMailer.ticket_created_notification(self).deliver_now
|
67
67
|
unless requester.email.empty?
|
68
|
-
Helpdesk::NotificationsMailer.ticket_created_confirmation(self).
|
68
|
+
Helpdesk::NotificationsMailer.ticket_created_confirmation(self).deliver_now if Helpdesk.send_confirmation_emails
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
data/lib/helpdesk/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: helpdesk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.40
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Beynon Wacław Łuczak
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-08-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: launchy
|
@@ -109,7 +109,7 @@ dependencies:
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
|
-
name: shoulda
|
112
|
+
name: shoulda
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
114
114
|
requirements:
|
115
115
|
- - ">="
|
@@ -526,7 +526,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
526
526
|
version: '0'
|
527
527
|
requirements: []
|
528
528
|
rubyforge_project:
|
529
|
-
rubygems_version: 2.4.
|
529
|
+
rubygems_version: 2.4.6
|
530
530
|
signing_key:
|
531
531
|
specification_version: 4
|
532
532
|
summary: Rails mountable engine providing basic helpdesk functionality for your applications
|