use handwritten font for typed signature

This commit is contained in:
DocuSeal
2023-10-28 16:03:19 +03:00
parent 86c7b92675
commit b48615df3f
5 changed files with 36 additions and 6 deletions
+12
View File
@@ -66,4 +66,16 @@ Rails.application.configure do
deterministic_key: 'test deterministic key',
key_derivation_salt: 'test key derivation salt'
}
config.middleware.use(Class.new do
def initialize(app)
@app = app
end
def call(env)
return [200, {}, []] if env['PATH_INFO'].starts_with?('/fonts')
@app.call(env)
end
end)
end