five-two-nw-olivander 0.1.2.16 → 0.1.2.17
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 60ef0e4f6cf44268d5836df99ce2f7548b77f6494a1de083ec0374c58c5f823c
|
4
|
+
data.tar.gz: 56d4c32092f2fd4dbeca7f8470fb26f01a23b0a3f2f38e10a734119a745a39c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b58d17599c9bff68932f749af403b809bd7080a7e77fb9dacb943e5f5558e26010ea0cea38e461fa11abaf4847c3bdd81de376622c96c83b32e72df2208418d2
|
7
|
+
data.tar.gz: d2345d025f1460ea4c3a2c7b806885eb514cda39e284400e773da772ac68ebc64596d11841b5a11ae393ffdd3ea5d041e5bc5d580bff50eb79ec5003118167fa
|
@@ -36,5 +36,13 @@ module Olivander
|
|
36
36
|
end
|
37
37
|
end.join(' ').html_safe
|
38
38
|
end
|
39
|
+
|
40
|
+
def current_user
|
41
|
+
controller.respond_to?(:current_user) ? controller.current_user : nil
|
42
|
+
end
|
43
|
+
|
44
|
+
def current_ability
|
45
|
+
controller.respond_to?(:current_ability) ? controller.current_ability : nil
|
46
|
+
end
|
39
47
|
end
|
40
48
|
end
|
@@ -11,7 +11,7 @@
|
|
11
11
|
.image
|
12
12
|
%img.img-circle.elevation-2{:alt => "User Image", :src => image_path(user_image_path(nil))}/
|
13
13
|
.info
|
14
|
-
= link_to
|
14
|
+
= link_to current_user, @context.sign_out_path, method: :delete, class: 'd-block'
|
15
15
|
/ SidebarSearch Form
|
16
16
|
.form-inline
|
17
17
|
.input-group{"data-widget" => "sidebar-search"}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module Olivander
|
2
2
|
class ApplicationContext
|
3
|
-
attr_accessor :name, :logo, :company, :menu_items, :route_builder
|
3
|
+
attr_accessor :name, :logo, :company, :menu_items, :route_builder, :sign_out_path
|
4
4
|
|
5
5
|
def self.default
|
6
6
|
ctx = ApplicationContext.new
|
@@ -8,10 +8,11 @@ module Olivander
|
|
8
8
|
ctx
|
9
9
|
end
|
10
10
|
|
11
|
-
def initialize(name: 'Application Name', logo: Logo.new, company: Company.new, menu_items: [])
|
11
|
+
def initialize(name: 'Application Name', logo: Logo.new, company: Company.new, sign_out_path: '/sign_out', menu_items: [])
|
12
12
|
self.name = name
|
13
13
|
self.logo = logo
|
14
14
|
self.company = company
|
15
|
+
self.sign_out_path = sign_out_path
|
15
16
|
self.menu_items = menu_items
|
16
17
|
end
|
17
18
|
|
data/lib/olivander/version.rb
CHANGED