This file contains hidden or 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
'use strict'; | |
const https = require('https'); | |
const attributes = (response) => { | |
return { | |
"email": response.email, | |
"email_verified": "true", | |
"name": response.name, | |
"custom:rails_app_id": response.id |
This file contains hidden or 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> | |
<div :class=`status-${eventStatus}` /> | |
</template> | |
<script> | |
export default { | |
props: { | |
eventStatus: String, | |
}, | |
} |
This file contains hidden or 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> | |
<div :class="cssClassForStatus" /> | |
</template> | |
<script> | |
export default { | |
props: { | |
eventStatus: String, | |
}, |
This file contains hidden or 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
# Concern to be included into an ActiveModel | |
module Attendable | |
extend ActiveSupport::Concern | |
included do | |
attr_reader :user_fees | |
end | |
def user_fees= new_user_fees | |
… |
This file contains hidden or 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
# Concern to be included into an ActiveModel | |
module Attendable | |
extend ActiveSupport::Concern | |
included do | |
attr_accessor :user_fees | |
end | |
def user_fees= new_user_fees | |
… |
This file contains hidden or 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
Pennyworth ist ein eigenständiges und vollwertiges Kassensystem für iPads und iPhones. Von Gastronomen für Gastronomen. Eine intuitive Bedieneroberfläche, die es erleichtert Artikel und Funktionen zu finden, um den Arbeitsablauf von Service und Bar zu unterstützen und zu vereinfachen. | |
Einfach runterladen, Karte einpflegen, Drucker an den Router stecken und loslegen... | |
Funktionsumfang: | |
- schnelles und einfaches Bonieren, Separieren und Kassieren | |
- Tagesberichte erstellen | |
- Journalansicht | |
- Daten- und Artikelverwaltung einfach und übersichtlich über unseren eigenen und sicheren Cloudserver |
This file contains hidden or 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
#encoding: UTF-8 | |
class GigsController < InheritedResources::Base | |
include Icalendar | |
load_and_authorize_resource | |
before_filter :ensure_current_band, except: :feed | |
skip_before_filter :authenticate_user!, :only => :feed | |
skip_authorize_resource :only => :feed | |
def new |