Bu web sitesi JavaScript ile daha iyi çalışır.
Ana Sayfa
Yardım
Giriş Yap
ben
/
calefaction
şunun yansıması
https://github.com/earwig/calefaction
İzle
1
Yıldızla
1
Çatalla
0
Kod
Sürümler
0
Aktivite
Kaynağa Gözat
Remove Encryptor; that was poorly thought-out...
old-ruby
Ben Kurtovic
9 yıl önce
ebeveyn
92b10037cd
işleme
a87698d9b3
3 değiştirilmiş dosya
ile
0 ekleme
ve
29 silme
Görünümü Böl
Diff Seçenekleri
İstatistikleri Göster
Yama Dosyasını İndir
Diff Dosyasını İndir
+0
-0
+0
-20
app/models/concerns/encryptor.rb
+0
-9
app/models/user.rb
+ 0
- 0
Dosyayı Görüntüle
+ 0
- 20
app/models/concerns/encryptor.rb
Dosyayı Görüntüle
@@ -1,20 +0,0 @@
module Encryptor
extend ActiveSupport::Concern
class_methods do
def encrypt(value)
ensure_encryptor
@crypt.encrypt_and_sign(value)
end
def decrypt(value)
ensure_encryptor
@crypt.decrypt_and_verify(value)
end
private
def ensure_encryptor
@crypt ||= ActiveSupport::MessageEncryptor.new(Rails.application.secrets.secret_key_base)
end
end
end
+ 0
- 9
app/models/user.rb
Dosyayı Görüntüle
@@ -1,17 +1,8 @@
# require 'calefaction/api/eveonline'
class User < ActiveRecord::Base
include Encryptor
has_secure_password
def api_verify
self.class.decrypt(super())
end
def api_verify=(value)
super(self.class.encrypt(value))
end
def member_of?(corp_id)
false
end
Yaz
Önizleme
Yükleniyor…
İptal
Kaydet