We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce5754b commit 6dac2e7Copy full SHA for 6dac2e7
README.md
@@ -82,9 +82,18 @@ def options
82
options={
83
response_fields: 'isPrivateFile, tags',
84
tags: %w[abc def],
85
- use_unique_file_name: false
+ use_unique_file_name: false,
86
+ folder: "your_directory/"
87
}
88
end
89
+
90
+# If you want to set upload dir then you can use following method or you can also use options method.
91
+# This method shuld return string
92
+def store_dir
93
+ "your_directory/"
94
+end
95
96
97
```
98
99
Then you need to modify your model. for example- if your model name is employee then do these changes
0 commit comments