gitcoinco/code_fund_ads

View on GitHub
app/javascript/controllers/campaign_reports_email_form_controller.js

Summary

Maintainability
A
1 hr
Test Coverage
import { Controller } from 'stimulus'

export default class extends Controller {
  success () {
    new window.Noty({
      type: 'success',
      text: this.element.dataset.success
    }).show()
  }

  error () {
    new window.Noty({ type: 'error', text: this.element.dataset.error }).show()
  }
}