This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import $ from 'jquery'; | |
export default { | |
data () { | |
return { | |
initOffset: { | |
x: 0, | |
y: 0, | |
}, | |
coordinates: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In Google Drive, create a new document of type Google Script. If it does not exist, use "Connect more apps" to enable Google Scripts | |
// Copy-paste this script into the content of the Google Script | |
// This script sends you at each execution an email with Github commits of last day, Jira modified tickets of last day, Google Calendar events of last day, and Google Calendar events of current day | |
// For Jira, just put your username and password. Use https://id.atlassian.com to get them, change password if necessary | |
// For Calendar access, in Google Script, go to Resources > Advanced Google Services and enable "Calendar API" | |
// For Github, it's complicated... you have to follow this tutorial: https://www.benlcollins.com/apps-script/oauth-github | |
// Last step, make the script a daily cron: go to Edit > Current project's triggers and run "sendDailyReport" every day between 5am and 6am | |
// You can run manually "sendDailyReport" to test if it's working ;) | |
// Settings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<multiselect | |
:id="selectOptions.id" | |
:options="options" | |
:value="value" | |
:multiple="selectOptions.multiple" | |
:track-by="selectOptions.trackBy || null" | |
:label="selectOptions.label || null" | |
:searchable="selectOptions.searchable" | |
:clear-on-select="selectOptions.clearOnSelect" |