You are here

public function Nodejs::addChannel in Node.js integration 8

File

src/Nodejs.php, line 167

Class

Nodejs

Namespace

Drupal\nodejs

Code

public function addChannel($channel) {
  $options = [
    'method' => 'POST',
  ];
  return $this
    ->httpRequest("nodejs/channel/add/{$channel}", $options);
}