Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ForensicArchitectureBridge] remove #4297

Merged
merged 1 commit into from
Oct 16, 2024

Conversation

Bockiii
Copy link
Contributor

@Bockiii Bockiii commented Oct 16, 2024

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

@Bockiii Bockiii merged commit e7d6f89 into RSS-Bridge:master Oct 16, 2024
4 of 7 checks passed
Copy link

Pull request artifacts

Bridge Context Status
ForensicArchitecture 1 untitled (current) ✔️

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant