POST /subs/{id}/orgs
Body
{
"id": 10,
"name: "hello"
| # Origin http://ubuntuhandbook.org/index.php/2020/05/canon-printer-scangear-mp-ubuntu-20-04/ | |
| # Ubuntu | |
| sudo apt install printer-driver-gutenprint | |
| sudo add-apt-repository ppa:thierry-f/fork-michael-gruz | |
| sudo apt install scangearmp2 | |
| sudo apt install scangearmp-mp495series | |
| # Arch / Manjaro |
| import { setRequestStatus, Status } from 'componentversions/organizer/modules/ui-helpers'; | |
| import {useSelector, useDispatch} from 'react-redux'; | |
| const Screen = () => { | |
| const diapatch = useDispatch(); | |
| const {asyncStatuses} = useSelector((state) => ({dialogs: state.uiHelpers.asyncStatuses})); | |
| return <div> |
| import { dialogToggle } from 'componentversions/organizer/modules/ui-helpers'; | |
| import {useSelector, useDispatch} from 'react-redux'; | |
| const Screen = () => { | |
| const diapatch = useDispatch(); | |
| const {dialogs} = useSelector((state) => ({dialogs: state.uiHelpers.dialogs})); | |
| return <div> |
| /** | |
| * dynamically loading all stories with .stories.js extension | |
| */ | |
| import { configure } from '@kadira/storybook'; | |
| require('es6-promise').polyfill(); | |
| import 'babel-polyfill'; | |
| const stories = require.context('../app/js/components', true, /.stories.js$/); | |
| function loadStories() { |
| import {applyMiddleware, compose, createStore} from 'redux'; | |
| import {routerMiddleware} from 'react-router-redux'; | |
| import thunk from 'redux-thunk'; | |
| import {createBrowserHistory} from 'history'; | |
| import rootReducer from './reducers'; | |
| export const history = createBrowserHistory({ | |
| basename: '/app', | |
| }); |
| import React, {Component} from 'react'; | |
| import {connect, ConnectedProps} from 'react-redux'; | |
| interface State {} | |
| type Props = ConnectedProps<typeof connector>; | |
| class Hello extends Component<Props, State> { | |
| // ... | |
| } |
| <!DOCTYPE html> | |
| <html lang="en" style="padding: 0;margin: 0;"> | |
| <head style="padding: 0;margin: 0;"> | |
| <title style="padding: 0;margin: 0;">Anomalies email template</title> | |
| <link rel="stylesheet" href="/styles.css" style="padding: 0;margin: 0;"> | |
| <style style="padding: 0;margin: 0;"> | |
| * { | |
| padding: 0; | |
| margin: 0; } |