We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use constant or functions to generate versions (same as for acl, you can define it via @acl or via function def acl(:thumb) )
acl
@acl
def acl(:thumb)
In some cases anyone would like not to generate full number of file versions. Right now you can skip transformations via
def transform(version, scope), do: :skip
Maybe it would be more native defining it in def versions. So you don't have to define empty transformations
def versions
@versions [:original, :thumb]
or use
def versions({file, scope}) do [:original, :thumb] end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suggestion
Use constant or functions to generate versions (same as for
acl
, you can define it via@acl
or via functiondef acl(:thumb)
)Reasoning
In some cases anyone would like not to generate full number of file versions. Right now you can skip transformations via
Maybe it would be more native defining it in
def versions
. So you don't have to define empty transformationsExample
or use
The text was updated successfully, but these errors were encountered: