Skip to content

Instantly share code, notes, and snippets.

View ytiq's full-sized avatar

Ivan Bakun ytiq

  • Noltic
  • Lviv, Ukraine
View GitHub Profile
@peterknolle
peterknolle / FileController.cls
Last active January 30, 2023 20:40
Lightning File Upload Component
public class FileController {
@AuraEnabled
public static Id saveTheFile(Id parentId, String fileName, String base64Data, String contentType) {
base64Data = EncodingUtil.urlDecode(base64Data, 'UTF-8');
Attachment a = new Attachment();
a.parentId = parentId;
a.Body = EncodingUtil.base64Decode(base64Data);