RSS-Bridge / rss-bridge

The RSS feed for websites missing it
https://rss-bridge.org/bridge01/
The Unlicense
7.37k stars 1.04k forks source link

[ForensicArchitectureBridge] remove #4297

Closed Bockiii closed 1 month ago

Bockiii commented 1 month ago

Hey,

should have run the checks :(

This is the original content of the bridge

<?php

class ForensicArchitectureBridge extends BridgeAbstract
{
    const NAME = 'Forensic Architecture';
    const URI = 'https://forensic-architecture.org/';
    const DESCRIPTION = 'Generates content feeds from forensic-architecture.org';
    const MAINTAINER = 'tillcash';

    public function collectData()
    {
        $url = 'https://forensic-architecture.org/api/fa/v1/investigations';
        $jsonData = json_decode(getContents($url));

        foreach ($jsonData->investigations as $investigation) {
            $this->items[] = [
                'content' => $investigation->abstract,
                'timestamp' => $investigation->publication_date,
                'title' => $investigation->title,
                'uid' => $investigation->id,
                'uri' => self::URI . 'investigation/' . $investigation->slug,
            ];
        }
    }
}

Please create a new PR so we can run the tests and integration again. Thanks

github-actions[bot] commented 1 month ago

Pull request artifacts

Bridge Context Status
ForensicArchitecture 1 untitled (current) ✔️

last change: Wednesday 2024-10-16 17:21:38