Este site funciona melhor com JavaScript.
Página inicial
Ajuda
Acessar
ben
/
calefaction
espelhamento de
https://github.com/earwig/calefaction
Observar
1
Favorito
1
Fork
0
Código
Versões
0
Atividade
Ver código fonte
Remove Encryptor; that was poorly thought-out...
old-ruby
Ben Kurtovic
9 anos atrás
pai
92b10037cd
commit
a87698d9b3
3 arquivos alterados
com
0 adições
e
29 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+0
-0
+0
-20
app/models/concerns/encryptor.rb
+0
-9
app/models/user.rb
+ 0
- 0
Ver arquivo
+ 0
- 20
app/models/concerns/encryptor.rb
Ver arquivo
@@ -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
Ver arquivo
@@ -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
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar