mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:25:31 +08:00
6609fe272c
Summary: RSVP tile now appears for messages with attached events. Test Plan: Tested manually. Will add unit tests Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D1797
13 lines
No EOL
313 B
CoffeeScript
13 lines
No EOL
313 B
CoffeeScript
{ComponentRegistry, WorkspaceStore} = require 'nylas-exports'
|
|
|
|
module.exports =
|
|
activate: (@state={}) ->
|
|
EventComponent = require "./event-component"
|
|
|
|
ComponentRegistry.register EventComponent,
|
|
role: 'Event'
|
|
|
|
deactivate: ->
|
|
ComponentRegistry.unregister EventComponent
|
|
|
|
serialize: -> @state |