tkh_content 0.9.11 → 0.9.12
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/CHANGELOG.md +5 -0
- data/app/controllers/tags_controller.rb +6 -0
- data/lib/tkh_content/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e7e2c1f257bbe3dc334d558b9ac14d3f960b74e5
|
|
4
|
+
data.tar.gz: 9b0901d4ff17044c6872ca01d1880069178f45a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88762d950ff258fa0715bca02e11b6496e33d845c1a913c237f5e0174c55fb81aacc9144099a225a2338fcbd65f9c430c35f9820662e170d7c75515dbd4adc4e
|
|
7
|
+
data.tar.gz: c7cb2e260521daae831c886e8036187378cc24bf56948153081c348a48b06e9048a0beafc48860b474cd88ab032db9f149a37bde65015b4f17a9ea1e5153236b
|
data/CHANGELOG.md
CHANGED
|
@@ -23,6 +23,12 @@ class TagsController < ApplicationController
|
|
|
23
23
|
end
|
|
24
24
|
end
|
|
25
25
|
|
|
26
|
+
def destroy
|
|
27
|
+
@tag = Tag.find(params[:id])
|
|
28
|
+
@tag.destroy
|
|
29
|
+
redirect_to tags_url, notice: 'The tag has been removed'
|
|
30
|
+
end
|
|
31
|
+
|
|
26
32
|
private
|
|
27
33
|
|
|
28
34
|
# Never trust parameters from the scary internet, only allow the white list through.
|
data/lib/tkh_content/version.rb
CHANGED