All repository sets: GET "/repository_sets/?organization_id=ID"
{
"total": 5,
"subtotal": 5,
"page": null,
"per_page": null,
"error": null,
{"lastUpload":"2019-10-10T01:55:48.925Z","extensionVersion":"v3.4.3"} |
import React from 'react' | |
import { FormControl, FormControlLabel } from 'material-ui/Form' | |
import { withStyles } from 'material-ui/styles' | |
import Checkbox from 'material-ui/Checkbox' | |
import styles from '../../config/styles' | |
const SwitchInput = ({ | |
classes, | |
type, |
All repository sets: GET "/repository_sets/?organization_id=ID"
{
"total": 5,
"subtotal": 5,
"page": null,
"per_page": null,
"error": null,
import { combineReducers } from 'redux'; | |
import redHatRepositories from './RedHatRepositories'; | |
import { registerReducer } from 'foremanReact/common/MountingService'; | |
const rootReducer = combineReducers({ | |
redHatRepositories, | |
}); | |
registerReducer('katello_reducers', rootReducer); |
import React from 'react'; | |
import { connect } from 'react-redux'; | |
import onClickOutside from 'react-onclickoutside'; | |
import * as NotificationActions from '../../redux/actions/notifications'; | |
import './notifications.scss'; | |
import ToggleIcon from './toggleIcon/'; | |
import Drawer from './drawer/'; | |
import { groupBy, isUndefined } from 'lodash'; | |
class notificationContainer extends React.Component { |
npm WARN deprecated [email protected]: flot has been abandoned | |
npm WARN deprecated [email protected]: 🙌 Thanks for using Babel: we recommend using babel-preset-env now: please read babeljs.io/env to update! | |
npm WARN prefer global [email protected] should be installed with -g | |
npm WARN prefer global [email protected] should be installed with -g | |
> [email protected] install /home/vagrant/foreman/node_modules/node-zopfli | |
> node-pre-gyp install --fallback-to-build | |
node-pre-gyp ERR! Tried to download(403): https://node-zopfli.s3.amazonaws.com/Release/zopfli-v2.0.2-node-v48-linux-x64.tar.gz | |
node-pre-gyp ERR! Pre-built binaries not found for [email protected] and [email protected] (node-v48 ABI) (falling back to source compile with node-gyp) |
<div class="btn-group" uib-dropdown is-open="status.isOpen" keyboard-nav> | |
<button type="button" class="btn btn-default" ng-click="toggleDropdown($event)"> | |
<span translate>Select Action</span> | |
</button> | |
<button type="button" class="btn btn-default" ng-click="toggleDropdown($event)"> | |
<span class="caret"></span> | |
<span class="sr-only" translate>Toggle Dropdown</span> | |
</button> | |
</div> |
const subscribers = {}; | |
module.exports = subscriptions = { | |
subscribe: function(clientId, dataId) { | |
// Add subscribed user/data to the subscriptions object | |
const user = subscribers[clientId] || {}; | |
user[dataId] = true; | |
subscribers[clientId] = user; |
const initialState = []; | |
// Using initialState as a default parameter uses the initial state on first render | |
export default function (state = initialState, action) { | |
switch (action.type) { | |
case 'SET_ATTRACTIONS': | |
return action.attractions; |
import { promisify } from 'util'; | |
const readFilePromise = promisify(fs.readFile); | |
AwsFinder.prototype.revertFileVersion = async function(data, cb) { | |
log('aws', ['Reverting version:', data.id]); | |
// Get the current file buffer for diff comparison | |
try { | |
let originalBuffer = await readFilePromise(data.remote); | |
} catch (e) { |