summaryrefslogtreecommitdiff
path: root/app/models/integrations/field.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/integrations/field.rb')
-rw-r--r--app/models/integrations/field.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/models/integrations/field.rb b/app/models/integrations/field.rb
index 49ab97677db..f00c4236a92 100644
--- a/app/models/integrations/field.rb
+++ b/app/models/integrations/field.rb
@@ -2,7 +2,7 @@
module Integrations
class Field
- SENSITIVE_NAME = %r/token|key|password|passphrase|secret/.freeze
+ SECRET_NAME = %r/token|key|password|passphrase|secret/.freeze
ATTRIBUTES = %i[
section type placeholder required choices value checkbox_label
@@ -17,7 +17,7 @@ module Integrations
def initialize(name:, type: 'text', api_only: false, **attributes)
@name = name.to_s.freeze
- attributes[:type] = SENSITIVE_NAME.match?(@name) ? 'password' : type
+ attributes[:type] = SECRET_NAME.match?(@name) ? 'password' : type
attributes[:api_only] = api_only
@attributes = attributes.freeze
end
@@ -31,7 +31,7 @@ module Integrations
value
end
- def sensitive?
+ def secret?
@attributes[:type] == 'password'
end