helpdesk 0.0.10 → 0.0.11

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: 3de15e09a8fa89ce2f0ad4e71245b6bf51c29c5f
4
- data.tar.gz: d4071186fc44ba53952a7c1875db4bc1c5a94081
3
+ metadata.gz: 0cb3f72d7a03c39c62da16e28615e741fdcd7b62
4
+ data.tar.gz: b641bf423b7570a5a37b475214e7d554f65b1ab4
5
5
  SHA512:
6
- metadata.gz: 6165cf2a2673f78627a432b5fe12f1387c056ebbbae507e59d0507273e39e3cf024420dcd873d5930fc3fd998033e1c9b43f0f6e4f29bc1228333ccc6a241f4a
7
- data.tar.gz: 5003f8c0923b7fe7433198cd3127bdb69738511e585d69bfe5b1ab80b9774a6228eed4d050bce67c42f6fd5b4a86c669ed3149f40167fd6a2e80970b52a3be79
6
+ metadata.gz: 9b15157ca00a0e6a97f3284a11148353c68e1df2095e296f57ee0b8c0720db372db89d74353b259aae2d7e0c9adeefa9ec4d3f295227efe479ee07c3cb4df824
7
+ data.tar.gz: 859e437996426672a8e52db55837e4aeea6562985d51e3a83ca7232e3f756946feb0c74269f6585a4f669e36a99c65ab4d9ba4371b1c7a85585d13e1ce551458
@@ -1,5 +1,5 @@
1
1
  module Helpdesk
2
- class DashboardController < ApplicationController
2
+ class DashboardController < Helpdesk::ApplicationController
3
3
 
4
4
 
5
5
  before_filter :my_tickets
@@ -1,5 +1,5 @@
1
1
  module Helpdesk
2
- class FaqsController < ApplicationController
2
+ class FaqsController < Helpdesk::ApplicationController
3
3
  def index
4
4
  @faqs = Helpdesk::Faq.active
5
5
  end
@@ -1,48 +1,48 @@
1
1
  module Helpdesk
2
- class SubscribersController < ApplicationController
2
+ class SubscribersController < Helpdesk::ApplicationController
3
3
  # GET /subscribers
4
4
  # GET /subscribers.json
5
5
  def index
6
6
  @subscribers = Subscriber.all
7
-
7
+
8
8
  respond_to do |format|
9
9
  format.html # index.html.erb
10
10
  format.json { render json: @subscribers }
11
11
  end
12
12
  end
13
-
13
+
14
14
  # GET /subscribers/1
15
15
  # GET /subscribers/1.json
16
16
  def show
17
17
  @subscriber = Subscriber.find(params[:id])
18
-
18
+
19
19
  respond_to do |format|
20
20
  format.html # show.html.erb
21
21
  format.json { render json: @subscriber }
22
22
  end
23
23
  end
24
-
24
+
25
25
  # GET /subscribers/new
26
26
  # GET /subscribers/new.json
27
27
  def new
28
28
  @subscriber = Subscriber.new
29
-
29
+
30
30
  respond_to do |format|
31
31
  format.html # new.html.erb
32
32
  format.json { render json: @subscriber }
33
33
  end
34
34
  end
35
-
35
+
36
36
  # GET /subscribers/1/edit
37
37
  def edit
38
38
  @subscriber = Subscriber.find(params[:id])
39
39
  end
40
-
40
+
41
41
  # POST /subscribers
42
42
  # POST /subscribers.json
43
43
  def create
44
44
  @subscriber = Subscriber.new(params[:subscriber])
45
-
45
+
46
46
  respond_to do |format|
47
47
  if @subscriber.save
48
48
  format.html { redirect_to @subscriber, notice: 'Subscriber was successfully created.' }
@@ -53,12 +53,12 @@ module Helpdesk
53
53
  end
54
54
  end
55
55
  end
56
-
56
+
57
57
  # PUT /subscribers/1
58
58
  # PUT /subscribers/1.json
59
59
  def update
60
60
  @subscriber = Subscriber.find(params[:id])
61
-
61
+
62
62
  respond_to do |format|
63
63
  if @subscriber.update_attributes(params[:subscriber])
64
64
  format.html { redirect_to @subscriber, notice: 'Subscriber was successfully updated.' }
@@ -69,13 +69,13 @@ module Helpdesk
69
69
  end
70
70
  end
71
71
  end
72
-
72
+
73
73
  # DELETE /subscribers/1
74
74
  # DELETE /subscribers/1.json
75
75
  def destroy
76
76
  @subscriber = Subscriber.find(params[:id])
77
77
  @subscriber.destroy
78
-
78
+
79
79
  respond_to do |format|
80
80
  format.html { redirect_to subscribers_url }
81
81
  format.json { head :no_content }
@@ -24,6 +24,7 @@ en:
24
24
  subject: Subject of
25
25
  Description: Content
26
26
  ticket: Issue
27
+ faq: FAQ
27
28
  comments:
28
29
  title: Comments
29
30
  note: Memo
@@ -24,6 +24,7 @@ pl:
24
24
  subject: Temat zgłoszenia
25
25
  description: Treść
26
26
  ticket: Zgłoszenie
27
+ faq: FAQ
27
28
  comments:
28
29
  title: Komentarze
29
30
  note: Notatka
@@ -1,3 +1,3 @@
1
1
  module Helpdesk
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
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.10
4
+ version: 0.0.11
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: 2014-01-08 00:00:00.000000000 Z
11
+ date: 2014-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: launchy