Commit 1f2b11e4c2be168c45a8c89a3cf67f3b185134d0
1 parent
25339596
Overwrite method to url of menu
Signed-off-by: Artur Bersan de Faria <artur_bersan@hotmail.com> Signed-off-by: Matheus Miranda <matheusmirandalacerda@gmail.com>
Showing
2 changed files
with
18 additions
and
1 deletions
Show diff stats
plugins/oauth_client/lib/ext/external_person.rb
@@ -13,6 +13,19 @@ class ExternalPerson | @@ -13,6 +13,19 @@ class ExternalPerson | ||
13 | ExternalPerson::Image.new(oauth_auth) | 13 | ExternalPerson::Image.new(oauth_auth) |
14 | end | 14 | end |
15 | 15 | ||
16 | + # This method is un alias to 'url' method of ExternalPerson < ActiveRecord::Base | ||
17 | + def public_profile_url | ||
18 | + self.oauth_auth.string_url | ||
19 | + end | ||
20 | + | ||
21 | + def url | ||
22 | + self.oauth_auth.string_url | ||
23 | + end | ||
24 | + | ||
25 | + def admin_url | ||
26 | + self.oauth_auth.string_url | ||
27 | + end | ||
28 | + | ||
16 | class ExternalPerson::Image | 29 | class ExternalPerson::Image |
17 | def initialize(oauth_auth) | 30 | def initialize(oauth_auth) |
18 | @oauth_auth = oauth_auth | 31 | @oauth_auth = oauth_auth |
plugins/oauth_client/models/oauth_client_plugin/facebook_auth.rb
1 | class OauthClientPlugin::FacebookAuth < OauthClientPlugin::Auth | 1 | class OauthClientPlugin::FacebookAuth < OauthClientPlugin::Auth |
2 | 2 | ||
3 | - IMAGE_SIZES = { | 3 | + IMAGE_SIZES = { |
4 | :big => "150", | 4 | :big => "150", |
5 | :thumb => "100", | 5 | :thumb => "100", |
6 | :portrait => "64", | 6 | :portrait => "64", |
@@ -13,4 +13,8 @@ class OauthClientPlugin::FacebookAuth < OauthClientPlugin::Auth | @@ -13,4 +13,8 @@ class OauthClientPlugin::FacebookAuth < OauthClientPlugin::Auth | ||
13 | "http://graph.facebook.com/#{self.uid}/picture" | 13 | "http://graph.facebook.com/#{self.uid}/picture" |
14 | end | 14 | end |
15 | 15 | ||
16 | + def string_url | ||
17 | + "https://www.facebook.com/" | ||
18 | + end | ||
19 | + | ||
16 | end | 20 | end |