ycs-plugin-fileuploader
TypeScript icon, indicating that this package has built-in type declarations

1.0.7 • Public • Published

Installation

ycs add plugin fileuploader

Configurations

import { Ycs } from '@ycs/core';
import { IConfig } from 'ycs-plugin-fileuploader';

const config = Ycs.instance.config;

export const development: IConfig = [
  {
    name: 'images',
    tags: ['__plugin_fileuploader_images'],
    endpoint: '/fileuploads/images',
    path: config.root + '/fileuploads/images',
    authRole: 'fileuploader',
    allowTypes: ['image/png', 'image/jpeg'],
    min: 0,
    max: 1024 * 500,
    errors: {
      empty: 'Empty body',
      type: 'The mimetype of file is not allowed.',
      size: 'The size of file is not allowed.',
    },
    url: x => x.__auth + '/' + x._id + '.' + x.ext,
  }
];

Readme

Keywords

none

Package Sidebar

Install

npm i ycs-plugin-fileuploader

Weekly Downloads

1

Version

1.0.7

License

MIT

Last publish

Collaborators

  • kuyoonjo