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: ca705fdadd65b24ed0d39bdf729ad757aa2f7e0764c0d385963ae0c77144a9e6
4
- data.tar.gz: b7ede6c6d6fc597db514b9c3117f72eee6bf834686fe4329db7e10b35dbdb92a
3
+ metadata.gz: 60ef0e4f6cf44268d5836df99ce2f7548b77f6494a1de083ec0374c58c5f823c
4
+ data.tar.gz: 56d4c32092f2fd4dbeca7f8470fb26f01a23b0a3f2f38e10a734119a745a39c3
5
5
  SHA512:
6
- metadata.gz: 5e1d731c04b0ff1d86dea82e792c502c7719560e38f2e3ed3be97db851897c290d89ec8b7a751159232c0368c85329eb6f0d6c34159936ad49fced1107b6bbd1
7
- data.tar.gz: a74487154d84ddf468651d19893864315e0669ba9b799da0f7c8aba653e8f6a8e41e33a5a9b21fc03ec5ab6eda17c98813738e982da4465da1991e1a1eef4925
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 current_erp_user, destroy_erp_user_session_path, method: :delete, class: 'd-block'
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
 
@@ -1,3 +1,3 @@
1
1
  module Olivander
2
- VERSION = "0.1.2.16"
2
+ VERSION = "0.1.2.17"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: five-two-nw-olivander
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2.16
4
+ version: 0.1.2.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Dennis